我想使用https://schema.org/SoftwareApplication,然后在Google构造测试工具中进行测试时,它会收到警告,提示我缺少以下代码的applicationCategory和操作系统。请帮忙。
add_filter( 'site-reviews/schema/SoftwareApplication', function( array $schema ) {
$schema['SoftwareApplication'] = [
'@type' => 'http://schema.org/',
'applicationCategory' => 'Backup,Restore',
'operatingSystem' => 'Windows,Mac',
];
return $schema;});
我使用了Site Review插件,该插件目前仅提供本地业务,产品和自定义设置。
然后我选择自定义并设置SoftwareApplication,插件作者说应尝试向function.php添加额外的架构。
这是他提供的样品:
add_filter( 'site-reviews/schema/LocalBusiness', function( array $schema ) {
$schema['address'] = [
'@type' => 'PostalAddress',
'streetAddress' => '123 Main St',
'addressLocality' => 'City',
'addressRegion' => 'State',
'postalCode' => 'Zip',
];
return $schema;});