Filter search posts by categories.
-
Hi Mikko,
I have problem with filter search posts by category. I have category id in cookies and i need to search post with this category and posts that do not have any category. I try too use filter hooks relevanssi_modify_wp_query but not work for me. maybe I’m doing something wrong.
add_filter('relevanssi_modify_wp_query', 'categoryQuery'); function categoryQuery($query) { $catQuery = array(); $catQuery[] = array( 'taxonomy' => 'category', 'field' => 'term_id', 'terms' => array(1), 'operator' => 'IN', ); $query->set('tax_query',$catQuery); return $query; }
Can you help me?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Filter search posts by categories.’ is closed to new replies.