This plugin is very useful, however, do not see how to sort results.
Visiting the support page, Firefox throws some very strange errors, saying their SSL cert doesn't belong to the site... :(
Anyway to sort the results?
This plugin is very useful, however, do not see how to sort results.
Visiting the support page, Firefox throws some very strange errors, saying their SSL cert doesn't belong to the site... :(
Anyway to sort the results?
Nevermind, added this to functions.php in my theme:
`/* sort search results by title */
function sort_searchresult_by_title($k) {
if(is_search()) {
$k->query_vars['orderby'] = 'title';
$k->query_vars['order'] = 'ASC';
}
}
add_action('pre_get_posts','sort_searchresult_by_title');'
Works like a charm! :)
This topic has been closed to new replies.