Recupera i messaggi per query personalizzata ID termine
-
-
Eccoil codice a cui si riferiscejdm2112: [Visualizzazione deipostmediante una query di selezionepersonalizzata] (http://codex.wordpress.org/Displaying_Posts_Using_a_Custom_Select_Query).Mi habattuto ...Here is the Codex jdm2112 is referring to: [Displaying Posts Using a Custom Select Query](http://codex.wordpress.org/Displaying_Posts_Using_a_Custom_Select_Query). He beat me to it...
- 1
- 2014-06-20
- eyoung100
-
1 risposta
- voti
-
- 2014-06-20
Haiprovato a utilizzare la classe WP_Query?Potresti scoprire che èpiù semplice utilizzaregli strumentiintegratiper questoinvece di una querypersonalizzata da zero.Qualcosa di simile al seguente dovrebbefunzionareperte:
<?php $args = array( 'post_type' => 'recipe_cpt', 'tax_query' => array( array( 'taxonomy' => 'recipe_tx', 'field' => 'term_id', 'terms' => 37 ) ) ); $query = new WP_Query( $args ); ?>
MODIFICA:nota che
tax_query
è un array di arrayin base allaprogettazione.Moltiproblemi di queryfiscali sonoil risultato dellamancanza di questo dettaglio.MODIFICA: correttoerrore dibattitura del valore
field
sopra,sostituendo "id" con "term_id".Have you tried using the WP_Query class? You might find it's easier to use the built-in tools for this instead of a custom query from scratch. Something similar to the following should work for you:
<?php $args = array( 'post_type' => 'recipe_cpt', 'tax_query' => array( array( 'taxonomy' => 'recipe_tx', 'field' => 'term_id', 'terms' => 37 ) ) ); $query = new WP_Query( $args ); ?>
EDIT: note the
tax_query
is an array of arrays by design. Many tax query problems are a result of missing this detail.EDIT: corrected
field
value typo above, replacing 'id' with 'term_id'.-
comepossotrovarei post con la clausola LIKEin questo caso?how i can find posts with LIKE clause int this case ?
- 0
- 2014-06-20
- Azeem Hassni
-
Nota chei possibili valoriper "field" sono "term_id","name","slug" o "term_taxonomy_id".Vedi https://codex.wordpress.org/Class_Reference/WP_Query#Taxonomy_ParametersNote that the possible values for `field` are `term_id`, `name`, `slug` or `term_taxonomy_id`. See https://codex.wordpress.org/Class_Reference/WP_Query#Taxonomy_Parameters
- 2
- 2017-11-22
- Marian
voglio recuperarei postpersonalizzati utilizzando la querypersonalizzata. lamiatassonomia è ricetta_txe termini (Manzo),(Pollo)ecc.
hoprovato a utilizzare
ma senzafortuna.
qualcunopuò aiutarmi a ottenerei post wptramiteil loroterm_id.
se l'ID dibeefs è 37,voglio recuperaretuttii post con
term_id = 37
Grazie