将此添加到主题的功能中。php删除wordpress站点所有页面上的RSS元链接标记,这意味着浏览器将无法检测页面上的任何RSS提要:
add_action( \'wp_head\', \'wpse58023_wp_head\', 1 );
function wpse58023_wp_head() {
// Removes main feed link(s)
remove_action( \'wp_head\', \'feed_links\', 2 );
// Removes comments feed link
remove_action( \'wp_head\', \'feed_links_extra\', 3 );
}
例如,上述函数删除主页上的此标记(不同页面上的提要不同):
<link rel="alternate" type="application/rss+xml" title="My Website Feed" href="/feed/" />
<link rel="alternate" type="application/rss+xml" title="My Website Comments Feed" href="/comments/feed/" />
所以现在,浏览器会认为您的主页没有提要。然后,您可以在标题中添加类似的内容。php(在
</head>
标记):
<link rel="alternate" type="application/rss+xml" title="My Website Feed" href="http://feeds.feedburner.com/mywebsite" />
使用
conditional tags 在不同的页面上显示不同的提要。这应该会让你知道你能做什么。