Tagged Questions
1
vote
1answer
498 views
Custom search filter causes menu and query_posts problems
I'm using a custom search filter (using my custom query var type), like so:
function fteh_pre_get_posts( $query ){
if( isset( $query->query_vars['type'] ) )
$types = explode( ',', ...
0
votes
1answer
726 views
Help With issue on pre_get_posts filter in taxonomy
I create a function to filter the taxonomy query with this code
add_action('pre_get_posts', 'custom_taxonomy_query');
$option_taxposts_per_page = get_option('tax_posts_per_page');
function ...