gpt4 book ai didi

wordpress - 删除页面上的 Yoast WordPress SEO

转载 作者:行者123 更新时间:2023-12-02 22:55:14 24 4
gpt4 key购买 nike

我正在尝试删除某个页面上的 Yoast WordPress SEO,因为它与另一个插件冲突。

我尝试将下面的代码添加到我的functions.php中,但它似乎不起作用,感谢任何帮助。

谢谢

function remove_wpseo(){
if ( is_page(944)) {
global $wpseo_front;
remove_action( 'wp_head', array($wpseo_front, 'head'), 2 );
}
}
add_action('wp_enqueue_scripts','remove_wpseo');

最佳答案

以防万一有人想知道为什么上述方法在升级后不起作用,这是从 14.0 版本开始禁用 Yoast SEO 输出的新方法

add_action( 'template_redirect', 'remove_wpseo' );

function remove_wpseo() {
if ( is_page ( 944 ) ) {
$front_end = YoastSEO()->classes->get( Yoast\WP\SEO\Integrations\Front_End_Integration::class );

remove_action( 'wpseo_head', [ $front_end, 'present_head' ], -9999 );
}
}

希望这有帮助!

关于wordpress - 删除页面上的 Yoast WordPress SEO,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24391891/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com