Changeset 12488
- Timestamp:
- 12/22/2009 03:57:33 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-app.php
r12102 r12488 1093 1093 $last_page = ((int)$last_page == 1 || (int)$last_page == 0) ? NULL : (int) $last_page; 1094 1094 $self_page = $page > 1 ? $page : NULL; 1095 ?><feed xmlns="<?php echo $this->ATOM_NS ?>" xmlns:app="<?php echo $this->ATOMPUB_NS ?>" xml:lang="<?php echo get_option('rss_language'); ?>" >1095 ?><feed xmlns="<?php echo $this->ATOM_NS ?>" xmlns:app="<?php echo $this->ATOMPUB_NS ?>" xml:lang="<?php echo get_option('rss_language'); ?>" <?php do_action('app_ns'); ?> > 1096 1096 <id><?php $this->the_entries_url() ?></id> 1097 1097 <updated><?php echo mysql2date('Y-m-d\TH:i:s\Z', get_lastpostmodified('GMT'), false); ?></updated> … … 1109 1109 <rights type="text">Copyright <?php echo date('Y'); ?></rights> 1110 1110 <?php the_generator( 'atom' ); ?> 1111 <?php do_action('app_head'); ?> 1111 1112 <?php if ( have_posts() ) { 1112 1113 while ( have_posts() ) { … … 1196 1197 <?php list($content_type, $content) = prep_atom_text_construct(get_the_excerpt()); ?> 1197 1198 <summary type="<?php echo $content_type ?>"><?php echo $content ?></summary> 1199 <?php do_action('app_entry'); ?> 1198 1200 </entry> 1199 1201 <?php }
Note: See TracChangeset
for help on using the changeset viewer.