Revision: 31804
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at September 13, 2010 23:18 by fabienthomas
Initial Code
add_filter( 'pre_get_posts', 'my_get_posts' ); function my_get_posts( $query ) { if ( is_feed() ) $query->set( 'post_type', array( 'post', 'snippet' ) ); return $query; }
Initial URL
Initial Description
Initial Title
Add custom post type to rss feed [WordPress]
Initial Tags
post, wordpress
Initial Language
PHP