加载Atom评论Feed或Atom帖子Feed。
原型
do_feed_atom( bool $for_comments )
参数
$for_comments
(bool)
(Required)
注释Feed为True,正常Feed为false。
源文件
路径:wp-includes/functions.php
<?php
...
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' );
}
...
?>
其他
英文文档:https://developer.wordpress.org/reference/functions/do_feed_atom/