Changeset 25868 for trunk/src/wp-includes/feed-rss2-comments.php
- Timestamp:
- 10/22/2013 05:21:32 PM (13 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/feed-rss2-comments.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/feed-rss2-comments.php
r25532 r25868 16 16 xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" 17 17 <?php 18 / /duplicate_hook18 /** This action is documented in wp-includes/feed-rss2.php */ 19 19 do_action( 'rss2_ns' ); 20 20 ?> … … 42 42 <description><?php bloginfo_rss("description") ?></description> 43 43 <lastBuildDate><?php echo mysql2date('r', get_lastcommentmodified('GMT')); ?></lastBuildDate> 44 <?php / /duplicate_hook?>44 <?php /** This filter is documented in wp-includes/feed-rss2.php */ ?> 45 45 <sy:updatePeriod><?php echo apply_filters( 'rss_update_period', 'hourly' ); ?></sy:updatePeriod> 46 <?php / /duplicate_hook?>46 <?php /** This filter is documented in wp-includes/feed-rss2.php */ ?> 47 47 <sy:updateFrequency><?php echo apply_filters( 'rss_update_frequency', '1' ); ?></sy:updateFrequency> 48 48 <?php … … 61 61 if ( !is_singular() ) { 62 62 $title = get_the_title($comment_post->ID); 63 / /duplicate_hook64 $title = apply_filters( 'the_title_rss', $title);63 /** This filter is documented in wp-includes/feed.php */ 64 $title = apply_filters( 'the_title_rss', $title ); 65 65 printf(ent2ncr(__('Comment on %1$s by %2$s')), $title, get_comment_author_rss()); 66 66 } else {
Note: See TracChangeset
for help on using the changeset viewer.