wp-links-opml.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. */
  14. require_once( dirname( __FILE__ ) . '/wp-load.php' );
  15. header('Content-Type: text/xml; charset=' . get_option('blog_charset'), true);
  16. $link_cat = '';
  17. if ( !empty($_GET['link_cat']) ) {
  18. $link_cat = $_GET['link_cat'];
  19. if ( !in_array($link_cat, array('all', '0')) )
  20. $link_cat = absint( (string)urldecode($link_cat) );
  21. }
  22. echo '<?xml version="1.0"?'.">\n";
  23. ?>
  24. <opml version="1.0">
  25. <head>
  26. <title><?php
  27. /* translators: 1: Site name */
  28. printf( __('Links for %s'), esc_attr(get_bloginfo('name', 'display')) );
  29. ?></title>
  30. <dateCreated><?php echo gmdate("D, d M Y H:i:s"); ?> GMT</dateCreated>
  31. <?php
  32. /**
  33. * Fires in the OPML header.
  34. *
  35. * @since 3.0.0
  36. */
  37. do_action( 'opml_head' );
  38. ?>
  39. </head>
  40. <body>
  41. <?php
  42. if ( empty($link_cat) )
  43. $cats = get_categories(array('taxonomy' => 'link_category', 'hierarchical' => 0));
  44. else
  45. $cats = get_categories(array('taxonomy' => 'link_category', 'hierarchical' => 0, 'include' => $link_cat));
  46. foreach ( (array)$cats as $cat ) :
  47. /**
  48. * Filters the OPML outline link category name.
  49. *
  50. * @since 2.2.0
  51. *
  52. * @param string $catname The OPML outline category name.
  53. */
  54. $catname = apply_filters( 'link_category', $cat->name );
  55. ?>
  56. <outline type="category" title="<?php echo esc_attr($catname); ?>">
  57. <?php
  58. $bookmarks = get_bookmarks(array("category" => $cat->term_id));
  59. foreach ( (array)$bookmarks as $bookmark ) :
  60. /**
  61. * Filters the OPML outline link title text.
  62. *
  63. * @since 2.2.0
  64. *
  65. * @param string $title The OPML outline title text.
  66. */
  67. $title = apply_filters( 'link_title', $bookmark->link_name );
  68. ?>
  69. <outline text="<?php echo esc_attr($title); ?>" type="link" xmlUrl="<?php echo esc_attr($bookmark->link_rss); ?>" htmlUrl="<?php echo esc_attr($bookmark->link_url); ?>" updated="<?php if ('0000-00-00 00:00:00' != $bookmark->link_updated) echo $bookmark->link_updated; ?>" />
  70. <?php
  71. endforeach; // $bookmarks
  72. ?>
  73. </outline>
  74. <?php
  75. endforeach; // $cats
  76. ?>
  77. </body>
  78. </opml>