Wordpress 如何从AMP文章中删除规范和标题

Wordpress 如何从AMP文章中删除规范和标题,wordpress,amp-html,canonical-link,Wordpress,Amp Html,Canonical Link,由于我的SEO插件,规范链接和标题标签出现了两次 我试图通过挂钩将其从放大器中取出: add_action( 'amp_post_template_head', 'r23_amp_post_template_add', 11 ); function r23_amp_post_template_add( $amp_template ) { remove_action( 'amp_post_template_head', 'amp_post_template_add_title' ); rem

由于我的SEO插件,规范链接和标题标签出现了两次

我试图通过挂钩将其从放大器中取出:

add_action( 'amp_post_template_head', 'r23_amp_post_template_add', 11 );

function r23_amp_post_template_add( $amp_template ) { 
remove_action( 'amp_post_template_head', 'amp_post_template_add_title' ); 
remove_action( 'amp_post_template_head', 'amp_post_template_add_canonical' ); 
}
但是,不幸的是,它不起作用


有什么想法吗?

我猜,你在用

你走对了。只需更改优先级:

add_action( 'amp_post_template_head', 'r23_amp_post_template_add', 9 );

function r23_amp_post_template_add($amp_template) {
    remove_action( 'amp_post_template_head', 'amp_post_template_add_title' );
    remove_action( 'amp_post_template_head', 'amp_post_template_add_canonical' );
}
测试和工作