]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-links-opml.php
Wordpress 2.7.1-scripts
[autoinstalls/wordpress.git] / wp-links-opml.php
index 2ee7751684bbfc7bc1c3e2248c5e39c532ae99f1..f536d61650e5a09362867dbd9a6f2ed2c31e4718 100644 (file)
@@ -1,7 +1,19 @@
 <?php
+/**
+ * Outputs the OPML XML format for getting the links defined in the link
+ * administration. This can be used to export links from one blog over to
+ * another. Links aren't exported by the WordPress export, so this file handles
+ * that.
+ *
+ * This file is not added by default to WordPress theme pages when outputting
+ * feed links. It will have to be added manually for browsers and users to pick
+ * up that this file exists.
+ *
+ * @package WordPress
+ */
 
 if (empty($wp)) {
-       require_once('./wp-config.php');
+       require_once('./wp-load.php');
        wp();
 }
 
@@ -14,7 +26,7 @@ if ((empty ($link_cat)) || ($link_cat == 'all') || ($link_cat == '0')) {
        $link_cat = intval($link_cat);
 }
 ?><?php echo '<?xml version="1.0"?'.">\n"; ?>
-<!-- generator="wordpress/<?php bloginfo_rss('version') ?>" -->
+<?php the_generator( 'comment' ); ?>
 <opml version="1.0">
        <head>
                <title>Links for <?php echo attribute_escape(get_bloginfo('name', 'display').$cat_name); ?></title>
@@ -26,7 +38,7 @@ if ((empty ($link_cat)) || ($link_cat == 'all') || ($link_cat == '0')) {
 if (empty ($link_cat))
        $cats = get_categories("type=link&hierarchical=0");
 else
-       $cats = array (get_category($link_cat));
+       $cats = get_categories('type=link&hierarchical=0&include='.$link_cat);
 
 foreach ((array) $cats as $cat) {
        $catname = apply_filters('link_category', $cat->name);
@@ -50,4 +62,4 @@ foreach ((array) $cats as $cat) {
 }
 ?>
 </body>
-</opml>
\ No newline at end of file
+</opml>