alx / blogsfera

Wordpress-Mu modificacion con plugins

This URL has Read+Write access

alx (author)
Mon Aug 11 12:12:11 -0700 2008
commit  46088d708ffdebc3909d5bd18730c4f0f64aa925
tree    f0486695938ea41ea86945368aafb2703b357dfd
parent  17af852acd08c2e912df8c9fd10c2d23d8c57ae7
blogsfera / wp-atom.php
e1fc0bbe » alx 2008-07-04 first commit 1 <?php
70adcda2 » alx 2008-07-22 update to mu-2.6.rc1 2 /**
3 * Outputs the Atom feed XML format using the feed-atom.php file in wp-includes
4 * folder. This file only sets the feed format and includes the feed-atom.php.
5 *
6 * This file is no longer used in WordPress and while it is not deprecated now.
7 * This file will most likely be deprecated or removed in a later version.
8 *
9 * The link for the atom feed is /index.php?feed=atom with permalinks off.
10 *
11 * @package WordPress
12 */
e1fc0bbe » alx 2008-07-04 first commit 13
14 if (empty($wp)) {
70adcda2 » alx 2008-07-22 update to mu-2.6.rc1 15 require_once('./wp-load.php');
e1fc0bbe » alx 2008-07-04 first commit 16 wp('feed=atom');
17 }
18
19 require (ABSPATH . WPINC . '/feed-atom.php');
20
21 ?>