]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/feed-rss2.php
WordPress 4.2.4-scripts
[autoinstalls/wordpress.git] / wp-includes / feed-rss2.php
index f7da5f2a9af23ecde5ad5684ae1daf9b2aaa073b..2390c2d957a04a8aa0c8804eaa3031fb7c416259 100644 (file)
@@ -11,7 +11,7 @@ $more = 1;
 echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>';
 
 /**
 echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>';
 
 /**
- * Fires between the <xml> and <rss> tags in a feed.
+ * Fires between the xml and rss tags in a feed.
  *
  * @since 4.0.0
  *
  *
  * @since 4.0.0
  *
@@ -44,30 +44,32 @@ do_action( 'rss_tag_pre', 'rss2' );
        <description><?php bloginfo_rss("description") ?></description>
        <lastBuildDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_lastpostmodified('GMT'), false); ?></lastBuildDate>
        <language><?php bloginfo_rss( 'language' ); ?></language>
        <description><?php bloginfo_rss("description") ?></description>
        <lastBuildDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_lastpostmodified('GMT'), false); ?></lastBuildDate>
        <language><?php bloginfo_rss( 'language' ); ?></language>
-       <?php
-       $duration = 'hourly';
-       /**
-        * Filter how often to update the RSS feed.
-        *
-        * @since 2.1.0
-        *
-        * @param string $duration The update period.
-        *                         Default 'hourly'. Accepts 'hourly', 'daily', 'weekly', 'monthly', 'yearly'.
-        */
-       ?>
-       <sy:updatePeriod><?php echo apply_filters( 'rss_update_period', $duration ); ?></sy:updatePeriod>
-       <?php
-       $frequency = '1';
-       /**
-        * Filter the RSS update frequency.
-        *
-        * @since 2.1.0
-        *
-        * @param string $frequency An integer passed as a string representing the frequency
-        *                          of RSS updates within the update period. Default '1'.
-        */
-       ?>
-       <sy:updateFrequency><?php echo apply_filters( 'rss_update_frequency', $frequency ); ?></sy:updateFrequency>
+       <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'.
+                */
+               echo apply_filters( 'rss_update_period', $duration );
+       ?></sy:updatePeriod>
+       <sy:updateFrequency><?php
+               $frequency = '1';
+
+               /**
+                * Filter the RSS update frequency.
+                *
+                * @since 2.1.0
+                *
+                * @param string $frequency An integer passed as a string representing the frequency
+                *                          of RSS updates within the update period. Default '1'.
+                */
+               echo apply_filters( 'rss_update_frequency', $frequency );
+       ?></sy:updateFrequency>
        <?php
        /**
         * Fires at the end of the RSS2 Feed Header.
        <?php
        /**
         * Fires at the end of the RSS2 Feed Header.