<?php
/**
* Atom Feed Template for displaying Atom Comments feed.
*
* @package WordPress
*/
header( 'Content-Type: ' .
feed_content_type( 'atom'
) . '; charset=' .
get_option( 'blog_charset'
), true
);
echo '<?xml version="1.0" encoding="' .
get_option( 'blog_charset'
) . '" ?' . '>';
/** This action is documented in wp-includes/feed-rss2.php */
do_action( 'rss_tag_pre', 'atom-comments'
);
?>
<feed
xmlns="http://www.w3.org/2005/Atom"
xml:lang="<?php
bloginfo_rss( 'language'
); ?>"
xmlns:thr="http://purl.org/syndication/thread/1.0"
<?php
/** This action is documented in wp-includes/feed-atom.php */