summaryrefslogtreecommitdiffstatshomepage
path: root/wp-feed.php
blob: 24cd8d6721ea47c8fa395204e8b622a14858fba1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
<?php
/**
 * Redirects to the default feed
 * This file is deprecated and only exists for backwards compatibility
 *
 * @package WordPress
 */

require( './wp-load.php' );
wp_redirect( get_bloginfo( get_default_feed() . '_url' ), 301 );

?>