在哪里将我的 RSS 源添加到 WordPress 中

发布于 2024-08-08 16:22:36 字数 63 浏览 5 评论 0原文

我有要放入 WordPress 的 Feed Burner 代码,但不知道将其放入 WordPress 的何处。

I have the feed burner code to put into wordpress but do not know where to put it into wordpress.

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

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

发布评论

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

评论(1

故人爱我别走 2024-08-15 16:22:36

前往以下文件:wp-includes/general-template.php

然后,跳转到以下函数(大约第 1454 行):

function feed_links( $args ) {
  //--guts of the function
}

您会注意到之前的两 (2) 行函数的结束如下:

echo '<link rel="alternate" type="' . feed_content_type() . '" title="' . esc_attr(sprintf( $args['feedtitle'], get_bloginfo('name'), $args['separator'] )) . '" href="' . get_feed_link() . "\" />\n";
echo '<link rel="alternate" type="' . feed_content_type() . '" title="' . esc_attr(sprintf( $args['comstitle'], get_bloginfo('name'), $args['separator'] )) . '" href="' . get_feed_link( 'comments_' . get_default_feed() ) . "\" />\n";

使用您的 Feedburner URL 编辑第一行,如下所示(为了清晰起见,跨行进行了划分,并避免像上面的代码块中那样滚动):

echo '<link rel="alternate" type="' . feed_content_type() . '" 
         title="' . esc_attr(sprintf( $args['feedtitle'], get_bloginfo('name'), 
         $args['separator'] )) . '" 
         href="http://feeds.feedburner.com/example"' . " />\n";

Head yourself to the following file: wp-includes/general-template.php

Then in that, jump down to the following function (around line 1454):

function feed_links( $args ) {
  //--guts of the function
}

You'll note two (2) lines just before the close of the function like so:

echo '<link rel="alternate" type="' . feed_content_type() . '" title="' . esc_attr(sprintf( $args['feedtitle'], get_bloginfo('name'), $args['separator'] )) . '" href="' . get_feed_link() . "\" />\n";
echo '<link rel="alternate" type="' . feed_content_type() . '" title="' . esc_attr(sprintf( $args['comstitle'], get_bloginfo('name'), $args['separator'] )) . '" href="' . get_feed_link( 'comments_' . get_default_feed() ) . "\" />\n";

Edit the first line with your Feedburner URL, like so (broken across lines for clarity and to save you from scrolling like in the above code block):

echo '<link rel="alternate" type="' . feed_content_type() . '" 
         title="' . esc_attr(sprintf( $args['feedtitle'], get_bloginfo('name'), 
         $args['separator'] )) . '" 
         href="http://feeds.feedburner.com/example"' . " />\n";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文