blob: 0ae63a2380d2770b7cbe9f210c28e60fd06c55ee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
/**
* Redirects to the RSS feed
* This file is deprecated and only exists for backwards compatibility
*
* @package WordPress
*/
require( './wp-load.php' );
wp_redirect( get_bloginfo( 'rss_url' ), 301 );
?>
|