Obtenga publicaciones por tipo de publicación personalizada, taxonomía y término
-
-
Ok,parece quepensé demasiadoen todoesto y la soluciónfue realmente simple:Ok, so it looks like I over thought all of this and the solution was really simple:
- 0
- 2012-03-14
- Rise
-
Marque su respuesta como correcta oelimineeltema.Please mark your answer as correct or delete the topic.
- 0
- 2012-03-14
- AlxVallejo
-
Necesitoesperar 7 horasparapublicar la solución :(I need to wait 7 hours to post the solution :(
- 0
- 2012-03-14
- Rise
-
1 respuesta
- votos
-
- 2012-03-22
Estaes la respuesta a lapregunta :)
<?php $args = array( 'post_type'=> 'services', 'areas' => 'painting', 'order' => 'ASC' ); $the_query = new WP_Query( $args ); if($the_query->have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); // content goes here endwhile; wp_reset_postdata(); else: endif; ?>
This is the answer to the question :)
<?php $args = array( 'post_type'=> 'services', 'areas' => 'painting', 'order' => 'ASC' ); $the_query = new WP_Query( $args ); if($the_query->have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); // content goes here endwhile; wp_reset_postdata(); else: endif; ?>
Bien,tengo untipo depublicaciónpersonalizada llamado "Servicios". Estetipo depublicaciónpersonalizadatiene unataxonomía llamada "Áreas" y hay 5términosen esataxonomía.
Digamos quetengo 10publicaciones sobre "Servicios" y hay 5publicacionesen eltérmino "Pintura" y 5másen eltérmino "Fotografía".
Necesitopoder consultarpublicaciones de "Servicios",peroen lugar demostraresas 10publicaciones,solomostraré 5 asociadas a "Pintura".
Porelmomento,puedo consultarportaxonomía ytérminos,peroesomostrarátodas laspublicaciones de "servicios" sinfiltroportérmino.
Básicamente,consultapublicaciónportipo depublicación deltérmino queelija.
Cualquier ayuda seríagenial. Gracias.
Entonces,sipudieraespecificaren los $ args de quétipo depublicaciónpara obtener laspublicaciones,esto se resolvería.