WordPress 是否有 Feedburner 插件可以更改 RSS页面上的标签

发布于 2024-12-06 17:30:22 字数 216 浏览 1 评论 0原文

我正在寻找适用于 Wordpress 的 Feedburner 插件,该插件可以将提要重定向到 Feedburner,而且还可以更改嵌入在 Wordpress 页面上的 RSS 链接以指向 Feedburner。我尝试过的插件会重定向 RSS 提要,但它们都不会更改嵌入的 RSS 标签。例如,在 Safari 中,当您单击 RSS 按钮时,它会从 Wordpress 提要(而不是 Feedburner)中提取内容。

I'm looking for a Feedburner plugin for Wordpress that redirects feeds to Feedburner, but also changes the RSS links that are embedded on the Wordpress pages to point to Feedburner. The plugins I've tried will redirect the RSS feed, but none of them change the embedded RSS tags. So in Safari, for instance, when you click the RSS button, it pulls from the Wordpress feed (instead of Feedburner).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

玻璃人 2024-12-13 17:30:22

我记得 WordPress 不提供允许您修改 RSS 链接的 api。但是,您可以完全删除它们,然后添加回您自己的。这篇 WP 支持帖子是我获得以下信息的地方。

将以下内容添加到主题目录中的functions.php中

//remove the feeds for pages
remove_action( 'wp_head', 'feed_links_extra', 3 ); // extra feeds such as category
remove_action( 'wp_head', 'feed_links', 2 ); // general, post and comment feeds

//explicitly add feedburner link back into head
add_action('wp_head', 'addFeedburnerLink');

function addFeedburnerLink() {
  echo '<link rel="alternate" type="application/rss+xml" title="RSS 2.0 Feed" href="http://feedburner.com/myfeedburnerurl" />'; 
}

希望有帮助!您还应该查看 http://wordpress.stackexchange.com 。他们往往在处理与 WordPress 代码/插件相关的问题上做得更好。

As I recall Wordpress does not offer an api that allows you to modify the RSS links. However, you can remove them completely and then add back in your own. This WP support post is where I got the following info.

Add the following to your functions.php in your theme directory

//remove the feeds for pages
remove_action( 'wp_head', 'feed_links_extra', 3 ); // extra feeds such as category
remove_action( 'wp_head', 'feed_links', 2 ); // general, post and comment feeds

//explicitly add feedburner link back into head
add_action('wp_head', 'addFeedburnerLink');

function addFeedburnerLink() {
  echo '<link rel="alternate" type="application/rss+xml" title="RSS 2.0 Feed" href="http://feedburner.com/myfeedburnerurl" />'; 
}

Hope that helps! You should also checkout http://wordpress.stackexchange.com . They tend to do a much better job with Wordpress codex/plugin related questions over there.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文