add_filter( 'post_limits', 'podcast_post_limits' );
function podcast_post_limits( $limit ) {
global $wp_query;
if ( TRUE === $wp_query->is_feed AND 'feed' === $wp_query->query_vars['feed'] AND 'audio' === $wp_query->query_vars['post_type'] ) {
return 'LIMIT 0, 3';
}
return $limit;
}
I got given this code and it works nicely IF I remove the part:
'audio' === $wp_query->query_vars['post_type']
I am using that 3.5.1 of WP that just came out did not break my code because everything was working fine before this, but another forum advisor says his code works fine.
Is there another way to do this, what am I doing wrong?
I have CPT RSS Podcast Feeds.
I want to have code that checks if it is a RSS feed of a CPT and do certain things, like limit posts, change urls and stuff.
Is there another way to do this?
Further, I have tried outputting wp_query and get the following:
Code:
global $wp_query;
echo '<pre>'; print_r($wp_query->query_vars); echo '</pre>';
Output:
Array ( [feed] => feed [error] => [m] => 0 [p] => 0 [post_parent] => [subpost] => [subpost_id] => [attachment] => [attachment_id] => 0 [name] => [static] => [pagename] => [page_id] => 0 [second] => [minute] => [hour] => [day] => 0 [monthnum] => 0 [year] => 0 [w] => 0 [category_name] => [tag] => [cat] => [tag_id] => [author_name] => [tb] => [paged] => 0 [comments_popup] => [meta_key] => [meta_value] => [preview] => [s] => [sentence] => [fields] => [menu_order] => [category_in] => Array ( ) [category_not_in] => Array ( ) [category_and] => Array ( ) [post_in] => Array ( ) [post__not_in] => Array ( ) [tag_in] => Array ( ) [tag_not_in] => Array ( ) [tag__and] => Array ( ) [tag_slug__in] => Array ( ) [tag_slug__and] => Array ( ) [ignore_sticky_posts] => [suppress_filters] => [cache_results] => 1 [update_post_term_cache] => 1 [update_post_meta_cache] => 1 [post_type] => [posts_per_page] => 5 [nopaging] => [comments_per_page] => 50 [no_found_rows] => [order] => DESC )