og:locale:alternate – how to delete
-
I am using polylang, and I have this string from yoast seo plugin <meta property=”og:locale:alternate” content=”ru_RU” /> this is hurts to my site!
https://developer.yoast.com/features/opengraph/api/changing-og-locale-output/#change-the-oglocale-tag – this blog not giving answer on how to delete og:locale:alternate
these attempts did not help either
function remove_locale_and_alternate_presenters( $presenters ) {return array_filter( $presenters, function( $presenter ) {// Удаляем Locale_Presenter и Locale_Alternate_Presenterreturn ! ( $presenter instanceof Yoast\WP\SEO\Presenters\Open_Graph\Locale_Presenter ||$presenter instanceof Yoast\WP\SEO\Presenters\Open_Graph\Locale_Alternate_Presenter );});}add_filter( ‘wpseo_frontend_presenters’, ‘remove_locale_and_alternate_presenters’ );
———————-
function remove_locale_and_alternate_presenters( $presenters ) {return array_filter( $presenters, function( $presenter ) {// Удаляем Locale_Presenter и Locale_Alternate_Presenterreturn ! ( $presenter instanceof Yoast\WP\SEO\Presenters\Open_Graph\Locale_Presenter ||$presenter instanceof Yoast\WP\SEO\Presenters\Open_Graph\Locale_Alternate_Presenter );});}add_filter( ‘wpseo_frontend_presenters’, ‘remove_locale_and_alternate_presenters’ );
———————
function remove_yoast_og_locale_alternate( $presenters ) {return array_filter( $presenters, function( $presenter ) {// Убираем не только Locale_Presenter, но и Locale_Alternate_Presenterif ( $presenter instanceof Yoast\WP\SEO\Presenters\Open_Graph\Locale_Alternate_Presenter ) {return false;}return true;});}add_filter( ‘wpseo_frontend_presenters’, ‘remove_yoast_og_locale_alternate’ );
- The topic ‘og:locale:alternate – how to delete’ is closed to new replies.