feed-atom.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <?php
  2. /**
  3. * Atom Feed Template for displaying Atom Posts feed.
  4. *
  5. * @package WordPress
  6. */
  7. header( 'Content-Type: ' . feed_content_type( 'atom' ) . '; charset=' . get_option( 'blog_charset' ), true );
  8. $more = 1;
  9. echo '<?xml version="1.0" encoding="' . get_option( 'blog_charset' ) . '"?' . '>';
  10. /** This action is documented in wp-includes/feed-rss2.php */
  11. do_action( 'rss_tag_pre', 'atom' );
  12. ?>
  13. <feed
  14. xmlns="http://www.w3.org/2005/Atom"
  15. xmlns:thr="http://purl.org/syndication/thread/1.0"
  16. xml:lang="<?php bloginfo_rss( 'language' ); ?>"
  17. xml:base="<?php bloginfo_rss( 'url' ); ?>/wp-atom.php"
  18. <?php
  19. /**
  20. * Fires at end of the Atom feed root to add namespaces.
  21. *
  22. * @since 2.0.0
  23. */
  24. do_action( 'atom_ns' );
  25. ?>
  26. >
  27. <title type="text"><?php wp_title_rss(); ?></title>
  28. <subtitle type="text"><?php bloginfo_rss( 'description' ); ?></subtitle>
  29. <updated><?php echo get_feed_build_date( 'Y-m-d\TH:i:s\Z' ); ?></updated>
  30. <link rel="alternate" type="<?php bloginfo_rss( 'html_type' ); ?>" href="<?php bloginfo_rss( 'url' ); ?>" />
  31. <id><?php bloginfo( 'atom_url' ); ?></id>
  32. <link rel="self" type="application/atom+xml" href="<?php self_link(); ?>" />
  33. <?php
  34. /**
  35. * Fires just before the first Atom feed entry.
  36. *
  37. * @since 2.0.0
  38. */
  39. do_action( 'atom_head' );
  40. while ( have_posts() ) :
  41. the_post();
  42. ?>
  43. <entry>
  44. <author>
  45. <name><?php the_author(); ?></name>
  46. <?php $author_url = get_the_author_meta( 'url' ); if ( ! empty( $author_url ) ) : ?>
  47. <uri><?php the_author_meta( 'url' ); ?></uri>
  48. <?php
  49. endif;
  50. /**
  51. * Fires at the end of each Atom feed author entry.
  52. *
  53. * @since 3.2.0
  54. */
  55. do_action( 'atom_author' );
  56. ?>
  57. </author>
  58. <title type="<?php html_type_rss(); ?>"><![CDATA[<?php the_title_rss(); ?>]]></title>
  59. <link rel="alternate" type="<?php bloginfo_rss( 'html_type' ); ?>" href="<?php the_permalink_rss(); ?>" />
  60. <id><?php the_guid(); ?></id>
  61. <updated><?php echo get_post_modified_time( 'Y-m-d\TH:i:s\Z', true ); ?></updated>
  62. <published><?php echo get_post_time( 'Y-m-d\TH:i:s\Z', true ); ?></published>
  63. <?php the_category_rss( 'atom' ); ?>
  64. <summary type="<?php html_type_rss(); ?>"><![CDATA[<?php the_excerpt_rss(); ?>]]></summary>
  65. <?php if ( ! get_option( 'rss_use_excerpt' ) ) : ?>
  66. <content type="<?php html_type_rss(); ?>" xml:base="<?php the_permalink_rss(); ?>"><![CDATA[<?php the_content_feed( 'atom' ); ?>]]></content>
  67. <?php endif; ?>
  68. <?php
  69. atom_enclosure();
  70. /**
  71. * Fires at the end of each Atom feed item.
  72. *
  73. * @since 2.0.0
  74. */
  75. do_action( 'atom_entry' );
  76. if ( get_comments_number() || comments_open() ) :
  77. ?>
  78. <link rel="replies" type="<?php bloginfo_rss( 'html_type' ); ?>" href="<?php the_permalink_rss(); ?>#comments" thr:count="<?php echo get_comments_number(); ?>"/>
  79. <link rel="replies" type="application/atom+xml" href="<?php echo esc_url( get_post_comments_feed_link( 0, 'atom' ) ); ?>" thr:count="<?php echo get_comments_number(); ?>"/>
  80. <thr:total><?php echo get_comments_number(); ?></thr:total>
  81. <?php endif; ?>
  82. </entry>
  83. <?php endwhile; ?>
  84. </feed>