/ Published in: PHP
Expand |
Embed | Plain Text
add_filter( 'pre_get_posts', 'my_get_posts' ); function my_get_posts( $query ) { if ( is_feed() ) return $query; }
You need to login to post a comment.
fabienthomas on 09/13/10
rss feed post wordpress custom
3 people have marked this snippet as a favorite
techdetours
athanassiadis
crypticsoft
add_filter( 'pre_get_posts', 'my_get_posts' ); function my_get_posts( $query ) { if ( is_feed() ) return $query; }
You need to login to post a comment.