wp-atom.php 226 B

12345678910111213
  1. <?php
  2. /**
  3. * Redirects to the Atom feed
  4. * This file is deprecated and only exists for backwards compatibility
  5. *
  6. * @package WordPress
  7. */
  8. require( './wp-load.php' );
  9. wp_redirect( get_bloginfo( 'atom_url' ), 301 );
  10. exit;
  11. ?>