category__in ne fonctionne pas sur le type de message personnalisé
-
-
Votretype demessage `bbt`est-il affecté à lataxonomie` category`?Is your `bbt` post type assigned to `category` taxonomy?
- 0
- 2014-10-27
- Nilambar Sharma
-
Veuillez déposer un [modifier] avec le code utilisépour attribuer lataxonomie `catégorie` à votretype depublicationPlease file an [edit] with the code used to assign the `category` taxonomy to your post type
- 0
- 2014-10-27
- Pieter Goosen
-
@PieterGoosenbravo,je viens d'ajouter le codepour cela dansma réponse@PieterGoosen cheers, I just added the code for that into my answer
- 0
- 2014-10-27
- rand_user91
-
1 réponses
- votes
-
- 2014-10-27
category__in
ne fonctionnerajamais car vousn'utilisezpas lacategory
de lataxonomieintégrée.Vous utilisezen fait unetaxonomiepersonnalisée appeléetagbbt
.Jetez un œil à cepost ,j'aiexpliqué quelles sont les différencesPour lestaxonomiespersonnalisées,vous devez utiliser une
tax_query
Voici unexemple
$args = array( 'post_type' => 'bbt', 'tax_query' => array( array( 'taxonomy' => 'tagbbt', 'field' => 'term_id', 'terms' => array(90,89), ), ), ); $query = new WP_Query( $args );
category__in
will never work as you aren't making use of the build in taxonomycategory
. You are actually making use of a custom taxonomy calledtagbbt
. Take a look at this post, I have explained what the differences areFor custom taxonomies, you need to make use of a
tax_query
Here is an example
$args = array( 'post_type' => 'bbt', 'tax_query' => array( array( 'taxonomy' => 'tagbbt', 'field' => 'term_id', 'terms' => array(90,89), ), ), ); $query = new WP_Query( $args );
-
Excellent,c'estexactement ce qu'ilfaut.Je vais certainement lire votremessagepouren savoirplus sur les différences dans lestaxonomies/taxonomiespersonnalisées,mercibeaucoupExcellent, this is exactly what is required. I will definitely read up on your post to learn more of the differences in Taxonomies/Custom Taxonomies, thank you so much
- 0
- 2014-10-27
- rand_user91
-
Monplaisir. Prendreplaisir :-)My pleasure. Enjoy :-)
- 0
- 2014-10-27
- Pieter Goosen
Jene parvienspas àfairefonctionnermaboucle WP_Query,je ne comprendspaspourquoi
category__in
ne fonctionnerapas. Je veux simplementextraire certaines catégories demontype depublicationpersonnaliséquandj'utilise
echo $loop->found_posts;
cela renvoie 0,MAISj'ai 2messages autotal de ces catégoriesMODIFIER: Voici comment la catégorie a été attribuée: