admin管理员组文章数量:1122846
I am using Yoast plugin on my WordPress site, mainly for the sitemap and indexing features. My theme already comes with SEO features so now I am getting an error saying there's duplicate meta description. How can I disable the Yoast meta description on all pages?
Disabling on the theme side is not an option. I tried leaving one blank but it auto-generated a meta description and the duplicate issue persisted.
I am using Yoast plugin on my WordPress site, mainly for the sitemap and indexing features. My theme already comes with SEO features so now I am getting an error saying there's duplicate meta description. How can I disable the Yoast meta description on all pages?
Disabling on the theme side is not an option. I tried leaving one blank but it auto-generated a meta description and the duplicate issue persisted.
Share Improve this question edited May 25, 2024 at 15:41 fuxia♦ 107k38 gold badges255 silver badges459 bronze badges asked May 25, 2024 at 8:27 houjichahoujicha 31 bronze badge1 Answer
Reset to default 0This should do the job:
<?php
/**
Plugin Name: wpse425362
Description: Site specific code changes for example.com
*/
if (!defined('ABSPATH')) exit; // Exit if accessed directly
/**
* Removes the meta description generated by Yoast
*
* @param array $presenters the registered presenters.
*
* @return array the remaining presenters.
*/
function wpse425362_remove_description( $presenters ) {
return array_map( function( $presenter ) {
if ( ! $presenter instanceof Meta_Description_Presenter ) {
return $presenter;
}
}, $presenters );
}
add_action( 'wpseo_frontend_presenters', 'wpse425362_remove_description' );
Save this as /wp-content/plugins/wpse425362/wpse425362.php
and activate it in the plugins menu.
本文标签: pluginsHow to disable Yoast meta description for all pages
版权声明:本文标题:plugins - How to disable Yoast meta description for all pages 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1736306119a1932839.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论