mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-01 00:10:36 +01:00
1cdc6a5cd3
git-svn-id: http://svn.automattic.com/wordpress/trunk@3875 1a063a9b-81f0-0310-95a4-ce76da25c4cd
50 lines
1.4 KiB
PHP
50 lines
1.4 KiB
PHP
<?php
|
|
|
|
if (empty($wp)) {
|
|
require_once('./wp-config.php');
|
|
wp();
|
|
}
|
|
|
|
header('Content-type: text/xml; charset=' . get_settings('blog_charset'), true);
|
|
$link_cat = $_GET['link_cat'];
|
|
if ((empty ($link_cat)) || ($link_cat == 'all') || ($link_cat == '0')) {
|
|
$link_cat = '';
|
|
} else { // be safe
|
|
$link_cat = '' . urldecode($link_cat) . '';
|
|
$link_cat = intval($link_cat);
|
|
}
|
|
?><?php echo '<?xml version="1.0"?'.">\n"; ?>
|
|
<!-- generator="wordpress/<?php bloginfo_rss('version') ?>" -->
|
|
<opml version="1.0">
|
|
<head>
|
|
<title>Links for <?php echo get_bloginfo('name').$cat_name ?></title>
|
|
<dateCreated><?php echo gmdate("D, d M Y H:i:s"); ?> GMT</dateCreated>
|
|
</head>
|
|
<body>
|
|
<?php
|
|
|
|
if (empty ($link_cat))
|
|
$cats = get_categories("type=link&hierarchical=0");
|
|
else
|
|
$cats = array (get_category($link_cat));
|
|
|
|
foreach ((array) $cats as $cat) {
|
|
?>
|
|
<outline type="category" title="<?php echo wp_specialchars($cat->cat_name); ?>">
|
|
<?php
|
|
|
|
$bookmarks = get_bookmarks("category={$cat->cat_ID}");
|
|
foreach ((array) $bookmarks as $bookmark) {
|
|
?>
|
|
<outline text="<?php echo wp_specialchars($bookmark->link_name); ?>" type="link" xmlUrl="<?php echo wp_specialchars($bookmark->link_rss); ?>" htmlUrl="<?php echo wp_specialchars($bookmark->link_url); ?>" updated="<?php if ('0000-00-00 00:00:00' != $bookmark->link_updated) echo $bookmark->link_updated; ?>" />
|
|
<?php
|
|
|
|
}
|
|
?>
|
|
</outline>
|
|
<?php
|
|
|
|
}
|
|
?>
|
|
</body>
|
|
</opml>
|