谈论重新提出一个老问题。。。。
我最近不得不用WordPress 4.5.3来做这件事,但它根本不起作用。为了使其工作,我需要将if语句封装在wp\\u head调用的函数中,如下所示:
function remove_shortlink() {
if( is_page(2) ) {
remove_action( \'wp_head\', \'wp_shortlink_wp_head\', 10, 0 );
}
}
add_action( \'wp_head\', \'remove_shortlink\', 1 );
将“2”替换为页面的ID。将此添加到主题的功能中。php或插件中