public
Description: Wordpress project to create a distributed social-bookmark website
Homepage: http://bookmark.alexgirard.com/tag/pressmark
Clone URL: git://github.com/alx/pressmark.git
Click here to lend your support to: pressmark and make a donation at www.pledgie.com !
pressmark / wp-feed.php
100644 12 lines (10 sloc) 0.22 kb
1
2
3
4
5
6
7
8
9
10
11
12
<?php
/**
* Redirects to the RSS2 feed
* This file is deprecated and only exists for backwards compatibility
*
* @package WordPress
*/
 
require( './wp-load.php' );
wp_redirect( get_bloginfo( 'rss2_url' ), 301 );
 
?>