2021 en titre et les artistes 2021 en dessous
2020 en titre et les artistes 2020 en dessous
etc...
Et je ne sais pas comment ajouter ça, c'est un genre de boucle dans la boucle.
<?php $loopfuture = new WP_Query( array(
'post_type' => 'artistes',
'order' => 'DSC'
) ); ?>
<div id="flexartistes">
<?php while ( $loopfuture->have_posts() ) : $loopfuture->the_post(); ?>
<div class="artistflex">
<a href="<?php the_permalink() ?>"><?php the_post_thumbnail('event-image size'); ?></a>
<h3><?php the_title( '' );?></h3>
<div class="leprojetartist"><?php the_field( 'le_projet' );?></div>
<a href="<?php the_permalink() ?>" class="moreagenda">En savoir plus</a>
</div>
<?php endwhile; wp_reset_query(); ?>
</div>
merci de votre aide.