Archived topic
Scheme fault
3 replies · Started by Ivan on January 12, 2019
When I'm testing the scheme on my site and I'm getting a error at https://webmaster.yandex.com/tools/microtest/ saying:
wpsidebar
ERROR: https://schema.org/WPSidebar type unknown for the specification schema.org. Perhaps you meant https://schema.org/WPSideBar
itemType = https://schema.org/WPSidebar
It seems there is a mising uppercase B in the theme file
Regards
Ivan
Ah, thanks for pointing that out! We'll get that fixed in the next version.
For now, you can use this function:
add_filter( 'generate_sidebar_microdata, function() {
return 'itemtype="https://schema.org/WPSideBar" itemscope';
} );
Thanks Tom
No problem. Thanks for reporting this! :)