Sono consapevole che ci sono molti altri post che coprono un terreno simile a quello che sto per chiedere.
Ho tre tipi di post personalizzati in esecuzione, oltre a "post". Voglio eseguire un ciclo che tira tutti i post classificati in una particolare categoria
<?php
$args = array(
'post_type' => 'testimonial',
'posts_per_page' => 1,
'tax_query' => array(
array (
'taxonomy' => 'testimonial_category',
'field' => 'slug',
'terms' => 'home'
)
)
);
$query = new WP_Query( $args );
$postcount = 0;
?>
<?php if ($query->have_posts()) : ?>
<?php while ($query->have_posts()) : $query->the_post(); ?>
<?php $postcount++; ?>
//loop here
<?php wp_reset_query(); ?>
Questo è il codice che ho al momento, non sono sicuro di come lo condenso nel tirare molti tipi di post da una categoria.