web/wp-atom.php
author convert-repo
Mon, 22 Mar 2010 10:49:29 +0000
changeset 3 ba1be1ffaa11
parent 1 0d28b7c10758
permissions -rw-r--r--
update tags
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
0d28b7c10758 First commit
ymh
parents:
diff changeset
     1
<?php
0d28b7c10758 First commit
ymh
parents:
diff changeset
     2
/**
0d28b7c10758 First commit
ymh
parents:
diff changeset
     3
 * Redirects to the Atom feed
0d28b7c10758 First commit
ymh
parents:
diff changeset
     4
 * This file is deprecated and only exists for backwards compatibility
0d28b7c10758 First commit
ymh
parents:
diff changeset
     5
 *
0d28b7c10758 First commit
ymh
parents:
diff changeset
     6
 * @package WordPress
0d28b7c10758 First commit
ymh
parents:
diff changeset
     7
 */
0d28b7c10758 First commit
ymh
parents:
diff changeset
     8
0d28b7c10758 First commit
ymh
parents:
diff changeset
     9
require( './wp-load.php' );
0d28b7c10758 First commit
ymh
parents:
diff changeset
    10
wp_redirect( get_bloginfo( 'atom_url' ), 301 );
0d28b7c10758 First commit
ymh
parents:
diff changeset
    11
0d28b7c10758 First commit
ymh
parents:
diff changeset
    12
?>