Index: wp-includes/feed.php =================================================================== --- wp-includes/feed.php (révision 5789) +++ wp-includes/feed.php (copie de travail) @@ -206,4 +206,19 @@ } } -?> \ Pas de fin de ligne à la fin du fichier +function wp_dropdown_feeds ( $default = "rss2" ) { + $feeds = array ('rss' => 'RSS 0.92', + 'rss2' => 'RSS 2.0', + 'rdf' => 'RSS 1.0', + 'atom' => 'Atom'); + $r = ''; + foreach( $feeds as $feed => $name) + if ( $default == $feed ) // Make default first in list + $p = "\n\t"; + else + $r .= "\n\t"; + echo $p . $r; + +} + +?> Index: wp-includes/functions.php =================================================================== --- wp-includes/functions.php (révision 5789) +++ wp-includes/functions.php (copie de travail) @@ -769,7 +769,7 @@ $feed = preg_replace('/^_+/', '', $feed); if ( $feed == '' || $feed == 'feed' ) - $feed = 'rss2'; + $feed = get_option('rss_format'); $hook = 'do_feed_' . $feed; do_action($hook, $wp_query->is_comment_feed); Index: wp-admin/options-reading.php =================================================================== --- wp-admin/options-reading.php (révision 5789) +++ wp-admin/options-reading.php (copie de travail) @@ -62,6 +62,10 @@
+ | + |
---|---|