wordpress本地开发_WordPress提要开发人员指南

本地开发
A feed is a dataused forusers with. Feedare used to read a feed,users toto it.aof feedsin one spot is known as , which isby a feed .
提要是一种数据格式 , 用于为用户提供频繁更新的内容 。提要阅读器用于阅读提要,从而允许用户订阅它 。使一个集合的提要可以在一个位置访问是众所周知的聚合,这是由一个提要聚合器执行的 。

wordpress本地开发_WordPress提要开发人员指南

文章插图
In thisI’ll show you thekinds of feedbyand how tothem, with a focus onthem .
在本教程中,我将向您展示提供的各种提要格式以及如何访问它们,重点是以编程方式自定义它们 。
支持的提要格式 (Feedby )
fourfeed : RDF, RSS 0.92, RSS 2.0 and Atom. RSS 2.0 is the mostfeedand isbyevery feed .
支持四种流行的提要格式:RDF,RSS 0.92,RSS 2.0和Atom 。RSS 2.0是最流行的提要格式,几乎每个提要阅读器都支持它 。
The URL paths for these feeds are:
这些提要的URL路径是:
http://example.com/?feed=rsshttp://example.com/?feed=rss2http://example.com/?feed=rdfhttp://example.com/?feed=atom
You don’t have tothem into youror , you can just use thetothe URLs of thefeed :
您不必将它们硬编码到主题或插件中 , 只需使用以下功能即可检索各种提要格式的URL:

These URLsthe‘posts’ of the site.
这些URL检索网站的最新“帖子” 。
最近评论提要 (Feed)
The above pathstheposts of the site. To findwe need to use thefeed path:
以上路径提供了该网站的最新帖子 。要查找最近的评论,我们需要使用评论特定的供稿路径:
http://example.com/?feed=comments-rss2
If you don’t want toit, you can use thistothefeed:
如果您不想对其进行硬编码,则可以使用此函数来检索注释提要:

alsoa feed forof apost. To find theof apost the feed path is:
还提供了供稿,用于评论单个帖子 。要查找特定帖子的最新评论 , 提要路径为:
http://example.com/?p=id&feed=rss2
Again, if you don’t want toit, you can use thistoit:
同样 , 如果您不想对其进行硬编码,则可以使用以下函数进行检索:

分类供稿 (Feed)
wordpress本地开发_WordPress提要开发人员指南

文章插图
a feed for every . The feed path for aoris:
提供了每个类别的供稿 。单个类别或多个类别的提要路径为:
http://www.example.com/?cat=id1,id2&feed=rss2
You can use thistothe feed URL of aorby using the :
您可以使用此功能通过以下方式检索单个类别或多个类别的提要URL:

, you can also get the feed URL of a tag ortags too.
同样,您也可以获取一个标签或多个标签的Feed URL 。
作者提要 (Feed)
alsoa feed for theposts of an . This isif a user wants toavia a feed.
还为作者的最新帖子提供了提要 。如果用户想通过提要关注特定作者,这将很有用 。
The URL path of an ’s feed can beusing the below code:
可以使用以下代码构造作者提要的URL路径:
user_nicename) . 'feed/">' . the_author($idmode, false) . '';
Note:doesn’tany built-intothe URL of anfeed.
注意:没有提供任何内置功能来检索作者供稿的URL 。
搜索供稿 (Feed)
can alsoa feed for aterm. Here’s the feed URL path for aterm:
还可以检索搜索词的提要 。以下是搜索字词的供稿网址路径:
http://example.com/?s=sitepoint&feed=rss2
查看提要请求 (Check Feed )
In your theme or , you can check if ais a feedor not by using the below code:
在主题或插件中,可以使用以下代码检查请求是否为供稿请求:

Here we are using the ()to check if theis a feedor not. If yes, then ittrue.
在这里,我们使用()函数检查当前请求是否为feed请求 。如果是,则返回true 。
uses a built in feedtofeeds. Using thewe canour own feed .
内部使用内置的提要模板来显示提要 。使用操作,我们可以定义自己的提要模板 。
删除提要 ( Feeds)
If you don’t want tofeeds on your site, then you can use the code below toall of them:
如果您不想在您的网站上提供供稿,则可以使用以下代码禁用所有供稿:
wordpress本地开发_WordPress提要开发人员指南

文章插图

过滤Feed内容 ( Feed )
Totheof a post in a feed only we can use. Here is anon how to use it:
要仅过滤Feed中帖子的描述,我们可以使用过滤器 。这是有关如何使用它的示例:
function feed_word_count($content){$content .= 'Total '.str_word_count($content).' words';return $content;}add_filter("the_content_feed", "feed_word_count");
自动提要链接 ( Feed Links)
In3.0 , there is a themeto add feed URLs to the head tag. If you’re atheme , then add this line of code to your theme’s .php file tothis .
在 3.0及更高版本中,提供了主题支持功能,可将供稿URL添加到head标签 。如果您是主题开发人员 , 请将此代码行添加到主题的.php文件中以启用此功能 。
add_theme_support( 'automatic-feed-links' );
将提要重定向到提要 (Feeds toFeeds)
Many sitetotheir feeds using(or other third party ). This lets them track their feeds andof .
许多站点管理员更喜欢使用 (或其他第三方服务)提供其提要 。这样一来,他们就可以跟踪自己的供稿和订阅者人数 。
The dirty way to do this is bythe below code to . file
这样做的肮脏方法是将以下代码添加到.文件中
【wordpress本地开发_WordPress提要开发人员指南】RewriteEngine onRewriteCond %{HTTP_USER_AGENT} !FeedBurner[NC]RewriteCond %{HTTP_USER_AGENT} !FeedValidator [NC]RewriteRule ^feed/?([_0-9a-z-]+)?/?$ http://feeds.feedburner.com/name [R=302,NC,L]
This codeto theposts feed to .
此代码将请求重定向到的最新帖子提要 。
If you’reto touch your . file, then you can useto do the same thing.
如果您不愿意触摸.文件,则可以使用插件执行相同的操作 。
更多动作和过滤器 (Moreand )
many moreandtoour feeds. We’ve onlysome of the mostandones.
提供了更多的操作和过滤器来定制我们的提要 。我们仅介绍了一些最重要和最有用的内容 。
You can find many more feedatandat.
您可以在操作参考中找到更多与提要相关的操作,并在过滤器参考中找到过滤器。
结论 ()
Manyusersfeedthan email or. As feedare nowfor allit’s a good idea tousers antovia feeds, with RSS 2.0 being the. Youalsoanfeed and afeed if you have, not justposts feed.
许多用户更喜欢订阅订阅,而不是电子邮件或社交订阅 。由于feed聚合器现在可用于所有平台,因此最好为用户提供通过feed订阅的选项,其中RSS 2.0是首选格式 。如果您已启用评论功能,那么您还应该显示作者信息源和评论信息源,而不仅仅是最近的帖子信息源 。
Let me know yourwithfeeds below.
在下面让我知道您对 feed的体验 。
翻译自:
本地开发