2006-06-15 10:18:04 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if (empty($wp)) {
|
|
|
|
require_once('./wp-config.php');
|
|
|
|
wp();
|
|
|
|
}
|
2004-02-01 03:13:11 +01:00
|
|
|
|
2006-08-30 23:46:31 +02:00
|
|
|
header('Content-type: text/xml; charset=' . get_option('blog_charset'), true);
|
2004-04-21 00:56:47 +02:00
|
|
|
$link_cat = $_GET['link_cat'];
|
2006-06-15 10:18:04 +02:00
|
|
|
if ((empty ($link_cat)) || ($link_cat == 'all') || ($link_cat == '0')) {
|
|
|
|
$link_cat = '';
|
2004-02-01 03:13:11 +01:00
|
|
|
} else { // be safe
|
2006-06-15 10:18:04 +02:00
|
|
|
$link_cat = '' . urldecode($link_cat) . '';
|
|
|
|
$link_cat = intval($link_cat);
|
2004-02-01 03:13:11 +01:00
|
|
|
}
|
2005-02-01 03:03:21 +01:00
|
|
|
?><?php echo '<?xml version="1.0"?'.">\n"; ?>
|
2006-06-15 10:18:04 +02:00
|
|
|
<!-- generator="wordpress/<?php bloginfo_rss('version') ?>" -->
|
2004-02-01 03:13:11 +01:00
|
|
|
<opml version="1.0">
|
2006-11-19 08:56:05 +01:00
|
|
|
<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>
|
2004-02-01 03:13:11 +01:00
|
|
|
<?php
|
2006-06-15 10:18:04 +02:00
|
|
|
|
|
|
|
if (empty ($link_cat))
|
|
|
|
$cats = get_categories("type=link&hierarchical=0");
|
|
|
|
else
|
|
|
|
$cats = array (get_category($link_cat));
|
|
|
|
|
|
|
|
foreach ((array) $cats as $cat) {
|
2004-02-01 03:13:11 +01:00
|
|
|
?>
|
2006-06-15 10:18:04 +02:00
|
|
|
<outline type="category" title="<?php echo wp_specialchars($cat->cat_name); ?>">
|
2004-02-01 03:13:11 +01:00
|
|
|
<?php
|
2006-06-15 10:18:04 +02:00
|
|
|
|
|
|
|
$bookmarks = get_bookmarks("category={$cat->cat_ID}");
|
|
|
|
foreach ((array) $bookmarks as $bookmark) {
|
2004-02-01 03:13:11 +01:00
|
|
|
?>
|
2006-11-19 08:56:05 +01:00
|
|
|
<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; ?>" />
|
2004-02-01 03:13:11 +01:00
|
|
|
<?php
|
2006-06-15 10:18:04 +02:00
|
|
|
|
|
|
|
}
|
2006-01-24 00:10:08 +01:00
|
|
|
?>
|
2006-06-15 10:18:04 +02:00
|
|
|
</outline>
|
2006-01-24 00:10:08 +01:00
|
|
|
<?php
|
2006-06-15 10:18:04 +02:00
|
|
|
|
|
|
|
}
|
2004-02-01 03:13:11 +01:00
|
|
|
?>
|
2006-01-24 00:10:08 +01:00
|
|
|
</body>
|
2004-02-01 03:13:11 +01:00
|
|
|
</opml>
|