Recuperar publicaciones por consulta personalizada de identificación de término
-
-
Aquíestáel Codex al que se refierejdm2112: [Visualización depublicaciones usando una consulta de selecciónpersonalizada] (http://codex.wordpress.org/Displaying_Posts_Using_a_Custom_Select_Query).Me adelantó ...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 respuesta
- votos
-
- 2014-06-20
¿Haintentado utilizar la clase WP_Query?Puede que le resultemásfácil utilizar las herramientasintegradasparaestoen lugar de una consultapersonalizada desde cero.Algo similar a lo siguiente deberíafuncionarpara usted:
<?php $args = array( 'post_type' => 'recipe_cpt', 'tax_query' => array( array( 'taxonomy' => 'recipe_tx', 'field' => 'term_id', 'terms' => 37 ) ) ); $query = new WP_Query( $args ); ?>
EDITAR:tengaen cuenta que
tax_query
es unamatriz dematricespor diseño.Muchosproblemas de consultas deimpuestos sonel resultado deperdereste detalle.EDITAR: se corrigióelerrortipográfico del valor
field
anterior,reemplazando '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'.-
¿Cómopuedoencontrarpublicaciones con la cláusula LIKEen este caso?how i can find posts with LIKE clause int this case ?
- 0
- 2014-06-20
- Azeem Hassni
-
Tengaen cuenta que los valoresposiblespara `field` son`term_id`,`name`,` slug` o `term_taxonomy_id`.Consulte 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
Quiero recuperarpublicacionespersonalizadas usando una consultapersonalizada. mitaxonomíaes receta_tx y condiciones (Carne de res),(Pollo),etc.
heintentado usar
perono suerte.
¿Alguienpuede ayudarme a obtenerpublicaciones de wppor suterm_id?
si laidentificación debeefses 37,entonces quiero recuperartodas laspublicaciones con
term_id = 37
Gracias