Modify the JSON-LD schema type properties
-
Hi,
1. I try to add schema type properties, but I failed. All the existing schema type disapeared except those I add. Could anyone please give me an example on this?
// Modify the JSON-LD schema type properties $schemaType = 'LocalBusiness'; add_filter( "site-reviews/schema/{$schemaType}" , function( array $schema , array $args ) { $schema = array( 'address' => 'address', 'priceRange' => 'priceRange', 'telephone' => 'telephone' ); return $schema; }, 10, 2 );
2. I found this plugin doesn’t support Chinese Characters as Chinese Characters become numbers. Is there any way to fix this?
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Modify the JSON-LD schema type properties’ is closed to new replies.