WordPress : Exclure les catégories de la requête wp ne fonctionne pas
J’utilise ce code pour exclure une catégorie, mais il affiche toujours tous les articles de l’exposition.
$posts = get_posts(array(
'post_type' => 'exhibition',
'taxonomy' => 'categories_for_exhibitions',
'field' => 'slug',
'terms' => array('current'),
'operator' => 'NOT IN',
));
Solution n°1 trouvée
J’ai trouvé la réponse pour qu’elle puisse profiter à quelqu’un d’autre
$posts = get_posts(array(
'post_type' => 'exhibition',
'tax_query' => array(
array(
'taxonomy' => 'categories_for_exhibitions',
'field' => 'slug',
'terms' => 'current',
operator => 'NOT IN',
),
)
));
0 commentaire