how to include pages in wordpress feed

Keine Antworten
Christian Gnoth
User offline. Last seen 2 Jahre 46 Wochen ago. Offline
Beigetreten: 03.04.2009

the following php code includes pages to the default wordpress feed:


add_action( 'rss2_head', 'theme_do_feed' );

function theme_do_feed()
{
global $wpdb,
$wp_query;

$query_posts_args = array(
'showposts' => -1,
'post_type' => array('post', 'page')
);
query_posts( $query_posts_args );

return;
}