Changeset 1328 for trunk/wp-links-opml.php
- Timestamp:
- 06/13/08 17:21:00 (6 months ago)
- Files:
-
- trunk/wp-links-opml.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-links-opml.php
r1218 r1328 1 1 <?php 2 /** 3 * Outputs the OPML XML format for getting the links defined in the link 4 * administration. This can be used to export links from one blog over to 5 * another. Links aren't exported by the WordPress export, so this file handles 6 * that. 7 * 8 * This file is not added by default to WordPress theme pages when outputting 9 * feed links. It will have to be added manually for browsers and users to pick 10 * up that this file exists. 11 * 12 * @package WordPress 13 */ 2 14 3 15 if (empty($wp)) { 4 require_once('./wp- config.php');16 require_once('./wp-load.php'); 5 17 wp(); 6 18 }
