?> </title> <atom:link href="<?php self_link(); ?> " rel="self" type="application/rss+xml" /> <link><?php is_single() ? the_permalink_rss() : bloginfo_rss("url"); ?> </link> <description><?php bloginfo_rss("description"); ?> </description> <lastBuildDate><?php echo mysql2date('r', get_last_build_date_feed(), false); ?> </lastBuildDate> <sy:updatePeriod><?php /** This filter is documented in wp-includes/feed-rss2.php */ echo apply_filters('rss_update_period', 'hourly'); ?> </sy:updatePeriod> <sy:updateFrequency><?php /** This filter is documented in wp-includes/feed-rss2.php */ echo apply_filters('rss_update_frequency', '1'); ?> </sy:updateFrequency> <?php /** * Fires at the end of the RSS2 comment feed header.
do_action( 'rss2_comments_ns' ); ?> > <channel> <title><?php if ( is_singular() ) printf( ent2ncr( __( 'Comments on: %s' ) ), get_the_title_rss() ); elseif ( is_search() ) printf( ent2ncr( __( 'Comments for %1$s searching on %2$s' ) ), get_bloginfo_rss( 'name' ), get_search_query() ); else printf( ent2ncr( __( 'Comments for %s' ) ), get_bloginfo_rss( 'name' ) . get_wp_title_rss() ); ?></title> <atom:link href="<?php self_link(); ?>" rel="self" type="application/rss+xml" /> <link><?php (is_single()) ? the_permalink_rss() : bloginfo_rss("url") ?></link> <description><?php bloginfo_rss("description") ?></description> <lastBuildDate><?php echo mysql2date('r', get_last_build_date_feed(), false ); ?></lastBuildDate> <sy:updatePeriod><?php /** This filter is documented in wp-includes/feed-rss2.php */ echo apply_filters( 'rss_update_period', 'hourly' ); ?></sy:updatePeriod> <sy:updateFrequency><?php /** This filter is documented in wp-includes/feed-rss2.php */ echo apply_filters( 'rss_update_frequency', '1' ); ?></sy:updateFrequency> <?php /** * Fires at the end of the RSS2 comment feed header. * * @since 2.3.0 */ do_action( 'commentsrss2_head' );
?> </title> <atom:link href="<?php self_link(); ?> " rel="self" type="application/rss+xml" /> <link><?php bloginfo_rss('url'); ?> </link> <description><?php bloginfo_rss("description"); ?> </description> <lastBuildDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_last_build_date_feed(), false); ?> </lastBuildDate> <language><?php bloginfo_rss('language'); ?> </language> <sy:updatePeriod><?php $duration = 'hourly'; /** * Filter how often to update the RSS feed. * * @since 2.1.0 * * @param string $duration The update period. Accepts 'hourly', 'daily', 'weekly', 'monthly', * 'yearly'. Default 'hourly'.