category__in non funziona sul tipo di post personalizzato
-
-
Iltuotipo dipost `bbt` è assegnato allatassonomia` category`?Is your `bbt` post type assigned to `category` taxonomy?
- 0
- 2014-10-27
- Nilambar Sharma
-
Siprega di compilare una [modifica] conil codice utilizzatoper assegnare latassonomia "categoria" altipo di articoloPlease file an [edit] with the code used to assign the `category` taxonomy to your post type
- 0
- 2014-10-27
- Pieter Goosen
-
@ PieterGoosen applausi,ho appena aggiuntoil codiceper questonellamia risposta@PieterGoosen cheers, I just added the code for that into my answer
- 0
- 2014-10-27
- rand_user91
-
1 risposta
- voti
-
- 2014-10-27
category__in
nonfunzioneràmaiperchénon stai utilizzando labuildnellatassonomiacategory
.In realtà staifacendo uso di unatassonomiapersonalizzata chiamatatagbbt
.Dai un'occhiata a questopost ,ho spiegato quali sono le differenzePer letassonomiepersonalizzate,ènecessario utilizzare un
tax_query
Ecco unesempio
$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 );
-
Eccellente,questo èesattamente ciò che è richiesto.Leggerò sicuramenteiltuopostper saperne dipiù sulle differenzenelletassonomie/tassonomiepersonalizzate,graziemilleExcellent, 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
-
Ilpiacere ètuttomio. Godere :-)My pleasure. Enjoy :-)
- 0
- 2014-10-27
- Pieter Goosen
Non riesco afarfunzionareilmio ciclo WP_Query,non riesco a capireperché
category__in
nonfunziona. Voglio soloestrarre determinate categorie DALmiotipo dipostpersonalizzatoquando uso
echo $loop->found_posts;
restituisce 0,MA ho 2postin totale da quelle categorieMODIFICA: Ecco come è stata assegnata la categoria: