我想在我的首页上删除分页,该首页有一个静态主页。
<link rel='next' href='http://domain/page/2/'/>
我使用此代码但不删除它:
remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head', 10, 2 );
怎么了?
答案 0 :(得分:0)
你可以使用它,
remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head', 20, 2 );
或者您也可以使用,
add_action( 'init','remove_some_actions' );
function remove_some_actions(){
remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head', 10, 2 );
}
答案 1 :(得分:0)
我追查到这一点,这是一个插件问题。这段代码很好用
remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0 );