1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
<?php
/*
Template Name: Custom Feed
*/
$numposts = 2000;
function custom_rss_date( $timestamp = null ) {
$timestamp = ($timestamp==null) ? time() : $timestamp;
echo date(DATE_RSS, $timestamp);
}
$posts = query_posts('showposts='.$numposts);
$lastpost = $numposts - 1;
header("Content-Type: application/rss+xml; charset=UTF-8");
?>
<?php foreach ($posts as $post) { ?>
;<?php $categories = get_the_category(); echo $categories[0]->cat_name; ?>|<?php echo get_the_title($post->ID); ?>|<?php echo get_permalink($post->ID); ?>;
<?php } ?> |
Partager