Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图通过删除
remove_action( 'wp_head', 'feed_links', 10);
在模板的functions.php中,但它不起作用。我还有
<link rel="alternate" type="application/rss+xml" title="... Comments Feed" href="..." />
我正在使用 Wordpress 3.4.2。
尝试
function remove_header_info() { remove_action('wp_head', 'feed_links', 2); //removes feeds remove_action('wp_head', 'feed_links_extra', 3); //removes comment feed links } add_action('init', 'remove_header_info');