Do not work on custom made search.
-
I have custom made search in my WordPress. I did not made the search my self but it uses this:
$args['post_type'] = array('post', 'page'); $args['post_status'] = 'publish'; $args['s'] = $search_string; $args['orderby'] = 'date'; $args['order'] = 'DESC'; $args['suppress_filters'] = 0; $args['paged'] = $paged; $search_query = new WP_Query($args); global $search_query;
code to search. But this do not search for all site content and thats why I want to use Relevanssi, what seems to be ideal for what I need, but when I download and install the plugin then set it up by building the index, the search do not find anything. It just do not work. Some ideas whats wrong ?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Do not work on custom made search.’ is closed to new replies.