现在的位置: 首页 > 互联网络 > WP相关 > 正文

WordPress中有关订阅的函数集锦

2010-08-12 09:31 WP相关 ⁄ 共 2964字 ⁄ 字号 暂无评论
bloginfo_rss <?php bloginfo_rss( $show ) ?>
输出bloginfo函数的RSS容器。$show的有效值见:http://codex.wordpress.org/Function_Reference/get_bloginfo.
comment_author_rss <?php comment_author_rss() ?>
在订阅中显示当前评论的作者.
comment_link <?php comment_link() ?>
显示评论的链接.
comment_text_rss <?php comment_text_rss() ?>
在订阅中显示评论的内容.
do_feed <?php do_feed() ?>
使用action钩子(hook)装载feed模板。如果feed action没有钩子,函数会发布信息通知访问者feed不可用,之后函数消失。
do_feed_atom <?php do_feed_atom( $for_comments ) ?>
装载 Atom通用feed或 Atom文章feed。$for_comments(布尔值)(必需)使用通用feed时为true,标准feed时为false。
do_feed_rdf <?php do_feed_rdf() ?>
装载RDF RSS 0.91版本feed模板。
do_feed_rss <?php do_feed_rss() ?>
装载RDF RSS 1.0版本feed模板.
do_feed_rss2 <?php do_feed_rss2( $for_comments ) ?>
装载RSS2通用feed或RSS2文章feed。$for_comments(布尔值)(必需)使用通用feed时为true,标准feed时为false。
fetch_rss <?php fetch_rss($uri); ?>
检索某个RSS订阅并进行解析。用 MagpieRSS and RSSCache进行解析并自动缓存,用 Snoopy HTTP 客户端进行实际检索.已弃用.
get_author_feed_link <?php get_author_feed_link( $author_id, $feed ) ?>
检索所给定作者的feed链接。$author_id(整数)(必需)作者编号, $feed是Feed类型.
get_bloginfo_rss <?php get_bloginfo_rss( $show ) ?>
bloginfo函数的RSS集装箱。可以用 get_bloginfo()函数检索任何想要检索的信息。当函数值在 feed中被检索以供使用时,所有值的标签都将被除去,字符也将被转换。$show 详情见:http://codex.wordpress.org/Function_Reference/get_bloginfo_rss
get_category_feed_link <?php get_category_feed_link( $cat_id, $feed ); ?>
返回指定类别中所有文章的feed链接。可请求特别feed,但为空时,函数返回’rss2′feed链接。该函数取代了已经弃用的get_category_rss_link函数。$feed 是’rss2′或’atom’
get_comment_link <?php get_comment_link( $comment, $args ) ?>
获取评论的链接.
get_comment_author_rss <?php get_comment_author_rss() ?>
输出当前评论的作者.
get_post_comments_feed_link <?php get_post_comments_feed_link( $post_id, $feed ) ?>
输出文章的评论feed链接。链接内容放置在锚(anchor)中。未指定链接文本时使用默认内容。未指定文章编号时使用当前文章。.
get_rss <?php get_rss($uri, $num = 5) ?>
检索一个RSS feed并进行解析,并将其作为链接列表显示。已弃用.
get_search_comments_feed_link <?php get_search_comments_feed_link( $search_query, $feed ) ?>
在搜索结果中检索评论feed的永久链接.$searcu_query是URL搜索查询.
get_search_feed_link <?php get_search_feed_link( $search_query, $feed ) ?>
在搜索结果中检索feed的永久链接.$searcu_query是URL搜索查询.
get_the_category_rss <?php get_the_category_rss( $type ) ?>
检索所有文章类别,并格式化以便在feed中使用。$type默认值为’rss’。也可以是 ‘atom’ 或 ‘rdf’。
get_the_title_rss <?php get_the_title_rss() ?>
为feed检索当前文章的标题.
permalink_single_rss <?php permalink_single_rss( $file ); ?>
按 RSS  或Atom  聚合feed形式显示当前文章的永久链接。该标签须在 The Loop 内使用。$file是链接所指向的页面。默认为当前页面。
post_comments_feed_link <?php post_comments_feed_link( $link_text = ‘link_text’, $post_id = ‘post_id’, $feed = ‘feed_type’ ) ?>
输出文章的评论feed链接。链接内容放置在锚(anchor)中。未指定链接文本时使用默认内容。未指定文章编号时使用当前文章.$link_text是描述性内容,$post_id是文章编号,$feed是feed类别。有效值包括:atom,rdf,rss,rss2(默认值)。
rss_enclosure <?php rss_enclosure() ?>
显示当前文章的rss enclosure。
the_title_rss <?php the_title_rss() ?>
在feed中显示文章标题.
the_category_rss <?php the_category_rss( $type ) ?>
在feed中显示文章类别.$type默认值为’rss’。也可以是’rss’, ‘atom’, 或 ‘rdf’。
the_content_rss <?php the_content_rss( $more_link_text, $stripteaser, $more_file, $cut, $encode_html ) ?>
为feed显示文章内容。$more_link_text是当有更多内容但无法显示时,该参数显示剩余内容,$stripteaser默认为0,$more_file,$cut 是可显示的内容总字数,$encode_html是如何对内容进行编码,默认值:0。
the_excerpt_rss <?php the_excerpt_rss() ?>
为feed显示文章摘要.
wp_rss <?php wp_rss($uri, $num); ?>
检索一个RSS feed并进行解析,并将其作为无秩序的链接列表显示。已弃用.

给我留言

留言无头像?