2004-02-01 03:13:11 +01:00
|
|
|
<?php
|
|
|
|
$doing_rss = 1;
|
|
|
|
|
2004-08-30 09:16:40 +02:00
|
|
|
require('wp-blog-header.php');
|
|
|
|
header('Content-type: text/xml; charset=' . get_settings('blog_charset'), true);
|
2004-04-21 00:56:47 +02:00
|
|
|
$link_cat = $_GET['link_cat'];
|
2004-02-01 03:13:11 +01:00
|
|
|
if ((empty($link_cat)) || ($link_cat == 'all') || ($link_cat == '0')) {
|
|
|
|
$sql_cat = '';
|
|
|
|
} else { // be safe
|
|
|
|
$link_cat = ''.urldecode($link_cat).'';
|
|
|
|
$link_cat = addslashes_gpc($link_cat);
|
|
|
|
$link_cat = intval($link_cat);
|
|
|
|
if ($link_cat != 0) {
|
2004-05-24 10:22:18 +02:00
|
|
|
$sql_cat = "AND $wpdb->links.link_category = $link_cat";
|
|
|
|
$cat_name = $wpdb->get_var("SELECT $wpdb->linkcategories.cat_name FROM $wpdb->linkcategories WHERE $wpdb->linkcategories.cat_id = $link_cat");
|
2004-02-01 03:13:11 +01:00
|
|
|
if (!empty($cat_name)) {
|
|
|
|
$cat_name = ": category $cat_name";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?><?php echo "<?xml version=\"1.0\"?".">\n"; ?>
|
|
|
|
<!-- generator="wordpress/<?php echo $wp_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>
|
2004-05-24 10:22:18 +02:00
|
|
|
<?php $sql = "SELECT $wpdb->links.link_url, link_rss, $wpdb->links.link_name, $wpdb->links.link_category, $wpdb->linkcategories.cat_name
|
|
|
|
FROM $wpdb->links
|
|
|
|
LEFT JOIN $wpdb->linkcategories on $wpdb->links.link_category = $wpdb->linkcategories.cat_id
|
2004-02-13 14:30:31 +01:00
|
|
|
$sql_cat
|
2004-05-24 10:22:18 +02:00
|
|
|
ORDER BY $wpdb->linkcategories.cat_name, $wpdb->links.link_name \n";
|
2004-02-01 03:13:11 +01:00
|
|
|
//echo("<!-- $sql -->");
|
|
|
|
$prev_cat_id = 0;
|
|
|
|
$results = $wpdb->get_results($sql);
|
|
|
|
if ($results) {
|
|
|
|
foreach ($results as $result) {
|
|
|
|
if ($result->link_category != $prev_cat_id) { // new category
|
|
|
|
if ($prev_cat_id != 0) { // not first time
|
|
|
|
?>
|
|
|
|
</outline>
|
|
|
|
<?php
|
|
|
|
} // end if not first time
|
|
|
|
?>
|
2004-12-12 21:41:19 +01:00
|
|
|
<outline type="category" title="<?php echo wp_specialchars($result->cat_name); ?>">
|
2004-02-01 03:13:11 +01:00
|
|
|
<?php
|
|
|
|
$prev_cat_id = $result->link_category;
|
|
|
|
} // end if new category
|
|
|
|
?>
|
2004-12-12 21:41:19 +01:00
|
|
|
<outline title="<?php echo wp_specialchars($result->link_name); ?>" type="link" xmlUrl="<?php echo $result->link_rss; ?>" htmlUrl="<?php echo($result->link_url) ?>"/>
|
2004-02-01 03:13:11 +01:00
|
|
|
<?php
|
|
|
|
} // end foreach
|
|
|
|
} // end if
|
|
|
|
?>
|
|
|
|
</outline>
|
|
|
|
</body>
|
|
|
|
</opml>
|