alx / blogsfera
- Source
- Commits
- Network (0)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Tree:
46088d7
commit 46088d708ffdebc3909d5bd18730c4f0f64aa925
tree f0486695938ea41ea86945368aafb2703b357dfd
parent 17af852acd08c2e912df8c9fd10c2d23d8c57ae7
tree f0486695938ea41ea86945368aafb2703b357dfd
parent 17af852acd08c2e912df8c9fd10c2d23d8c57ae7
blogsfera / wp-atom.php
| e1fc0bbe » | alx | 2008-07-04 | 1 | <?php | |
| 70adcda2 » | alx | 2008-07-22 | 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 | 13 | ||
| 14 | if (empty($wp)) { | ||||
| 70adcda2 » | alx | 2008-07-22 | 15 | require_once('./wp-load.php'); | |
| e1fc0bbe » | alx | 2008-07-04 | 16 | wp('feed=atom'); | |
| 17 | } | ||||
| 18 | |||||
| 19 | require (ABSPATH . WPINC . '/feed-atom.php'); | ||||
| 20 | |||||
| 21 | ?> | ||||
