draft posts appears in search results
-
Hello!
I have a couple of problems with search:
1. how can I remove draft posts from search results ?
2. relevanssi_do_query ignores post_type
$sq = new WP_Query(array('s'=>$term, 'post_type'=>$post_type)); $posts = relevanssi_do_query($sq);
but if :
$sq = new WP_Query(array('s'=>$term, 'post_type'=>$post_type)); $sq->query_vars['post_type'] = $post_type; $posts = relevanssi_do_query($sq);
if works fine.
also its not clear to me why do we create wp_query object and then relevanssi_do_query. isnt it greedy ?
thank you, any help appreciated.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘draft posts appears in search results’ is closed to new replies.