-
-
Save dancameron/2148597 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function filter_term_archive( $query ) { | |
if( is_tax( some_custom_post_type_tax_slug() ) ) { | |
$query->set( 'tax_query', array( | |
'relation' => 'AND', // Change to OR if we only want to filter one type. | |
array( | |
'taxonomy' => some_custom_tax_slug(), | |
'field' => 'slug', | |
'terms' => $array_of_terms | |
), | |
array( | |
'taxonomy' => some_custom_post_type_tax_slug(), | |
'field' => 'slug', | |
'terms' => $current_archive_term | |
) | |
)); | |
} | |
return $query; | |
} | |
add_filter( 'pre_get_posts', 'my_get_posts' ); | |
// Or this | |
function filter_term_archive( $query ) { | |
if( is_tax( some_custom_post_type_tax_slug() ) ) { | |
$query->set( 'tax_query', array( | |
array( | |
'taxonomy' => some_custom_tax_slug(), | |
'field' => 'slug', | |
'terms' => $array_of_terms | |
) | |
)); | |
} | |
return $query; | |
} | |
add_filter( 'pre_get_posts', 'filter_term_archive' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment