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

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

?>