Ottieni messaggi per tipo di post personalizzato, tassonomia e termine
-
-
Ok,quindi sembra che abbiapensato atutto questoe la soluzione è stata davvero semplice:Ok, so it looks like I over thought all of this and the solution was really simple:
- 0
- 2012-03-14
- Rise
-
Contrassegna la risposta come corretta oelimina l'argomento.Please mark your answer as correct or delete the topic.
- 0
- 2012-03-14
- AlxVallejo
-
Devo aspettare 7 oreperpubblicare la soluzione :(I need to wait 7 hours to post the solution :(
- 0
- 2012-03-14
- Rise
-
1 risposta
- voti
-
- 2012-03-22
Questa è la risposta alla domanda :)
<?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; ?>
Ok,quindi ho untipo di articolopersonalizzato chiamato "Servizi". Questotipo dipostpersonalizzato ha unatassonomia chiamata "Aree"e ci sono 5terminiin quellatassonomia.
Supponiamo cheio abbia 10post su "Servizi"e ci sono 5postneltermine "Pittura"e altri 5 sultermine "Fotografia".
Devoesserein grado diinterrogarei post da "Servizi",mainvece dimostrare quei 10post,mostrane solo 5 associati a "Pittura".
Almomento sonoin grado dieseguire querypertassonomiae termini,ma questomostreràtuttii post di "servizi" senzafiltripertermine.
Fondamentalmenteinterrogapostperpost_type daltermine che scelgo.
Qualsiasi aiuto sarebbefantastico. Grazie.
Quindi,sepotessi semplicemente specificare su $ args da qualetipo dipost ottenerei post da questo sarebbe risolto.