do_feed_atom

函数
do_feed_atom ( $for_comments )
参数
  • (bool) $for_comments True for the comment feed, false for normal feed.
    Required:
相关
  • load_template()
定义位置
相关方法
do_feeddo_feed_rdfdo_feed_rssdo_feed_rss2add_feed
引入
2.1.0
弃用
-

do_feed_atom: 这个钩子用于输出当前页面的Atom feed。

加载Atom评论feed或Atom文章feed。

function do_feed_atom( $for_comments ) {
	if ( $for_comments ) {
		load_template( ABSPATH . WPINC . '/feed-atom-comments.php' );
	} else {
		load_template( ABSPATH . WPINC . '/feed-atom.php' );
	}
}

常见问题

FAQs
查看更多 >