Skip to content

Instantly share code, notes, and snippets.

@miguelpeixe
Last active December 18, 2015 08:09
Show Gist options
  • Save miguelpeixe/5751833 to your computer and use it in GitHub Desktop.
Save miguelpeixe/5751833 to your computer and use it in GitHub Desktop.
WordPress Advanced Search Example
<?php
function humus_advSearch_query($query) {
if(is_search() && $_REQUEST['tags']) {
$tax_query = array(
'taxonomy' => 'post_tag',
'terms' => $_REQUEST['tags'],
'field' => 'slug'
);
$query->set('tax_query', $tax_query);
}
}
add_action('pre_get_posts', 'humus_advSearch_query');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment