我通常在模板中制作RSS提要。只需复制wp include/feed-rss2中的RSS提要。php第二步是注册它,而不是原来的:
// override feeds
function own_rss( $for_comments ) {
//it is in my theme/feed/rss2.php
$rss_template = get_stylesheet_directory() . \'/feed/rss2.php\';
if( file_exists( $rss_template ) ) {
load_template( $rss_template );
} else {
do_feed_rss2( $for_comments ); // Call default function
}
}
remove_all_actions( \'do_feed_rss2\' );
add_action( \'do_feed_rss2\', \'own_rss\', 10, 1 );
第三步是根据您的需要调整您自己的RSS。
还要看看这个:http://codex.wordpress.org/Customizing_Feeds