Comment obtenir une méta et une taxonomie de terme personnalisé par terme ou comment filtrer tax_query
par un méta de terme à la place de slug
/id
?
function custom_pre_get_posts($query)
{
global $wp_query;
if ( !is_admin() && is_shop() && $query->is_main_query() && is_post_type_archive( "product" ))
{
$term = ???get_term_by_meta_and_taxonomy???('custom_meta_term','my_taxonomy');
$t_id = $term['term_id'];
$tax_query = array
(
array
(
'taxonomy' => 'my_taxoomy',
'field' => 'id',
'terms' => $t_id
)
);
$query->set( 'tax_query', $tax_query );
}
}
add_action( 'pre_get_posts', 'custom_pre_get_posts' );
Essaye ça:
$args = array(
'hide_empty' => false, // also retrieve terms which are not used yet
'meta_query' => array(
array(
'key' => 'feature-group',
'value' => 'kitchen',
'compare' => 'LIKE'
)
),
'taxonomy' => 'category',
);
$terms = get_terms( $args );
S'appuyant sur la réponse de ilgıt-yıldırım above, les instructions get_term_meta
et $key == 'meta_value'
doivent contenir $term>term_id
.
Voici un exemple complet incluant la demande personnalisée $wp_query
:
$term_args = array( 'taxonomy' => 'your-taxonomy' );
$terms = get_terms( $term_args );
$term_ids = array();
foreach( $terms as $term ) {
$key = get_term_meta( $term->term_id, 'term-meta-key', true );
if( $key == 'term-meta-value' ) {
// Push the ID into the array
$term_ids[] = $term->term_id;
}
}
// Loop Args
$args = array(
'post_type' => 'posts',
'tax_query' => array(
array(
'taxonomy' => 'your-taxonomy',
'terms' => $term_ids,
),
),
);
// The Query
$featured = new WP_Query( $args );
Vous aurez besoin de parcourir en boucle chacun des termes de votre requête principale conditionnelle. En supposant qu'il y aura probablement plus d'un terme avec les données personnalisées, vous devrez alors passer un tableau d'identifiants dans votre requête fiscale.
Par exemple, parcourez chaque terme pour vérifier les méta personnalisées:
$term_args = array(
'taxonomy' => $taxonomy_name,
);
$terms = get_terms( $term_args );
$term_ids = array();
foreach( $terms as $term ) {
$key = get_term_meta( $term->ID, 'meta_key', true );
if( $key == 'meta_value' ) {
// Push the ID into the array
$term_ids[] = $term->ID;
}
}
Ensuite, vous vous retrouvez avec la variable $ term_ids qui contient un tableau des identifiants de terme que vous recherchez. Vous pouvez transmettre cela à votre requête fiscale.