đ Root
/
home
/
artorgp
/
www
/
wp-content
/
themes
/
olorun
/
Editing: page-list-laureats.php
<?php /** Template Name: Template listing des laureats par année * * If the user has selected a static page for their homepage, this is what will appear. * Learn more: https://codex.wordpress.org/Template_Hierarchy * * @package WordPress * @subpackage Base theme developped by Arthur H. * @version 1.0 */ get_header(); while ( have_posts() ) : the_post(); ?> <div id="primary" class="content-area"> <main id="main" class="site-main" role="main"> <?php echo '<h1>'.get_the_title().'</h1>'; ?> <?php the_content(); ?> <?php $editions = get_terms( array( 'taxonomy' => 'edition', 'hide_empty' => true, // Only show editions that have posts 'orderby' => 'name', 'order' => 'DESC', // Most recent edition first ) ); if ( ! empty( $editions ) && ! is_wp_error( $editions ) ) : foreach ( $editions as $edition ) : $args = array( 'post_type' => 'expo-athari', 'posts_per_page' => -1, 'tax_query' => array( 'relation' => 'AND', array( 'taxonomy' => 'nomination', 'field' => 'slug', 'terms' => 'laureat', // Make sure the slug is exactly 'laureat' ), array( 'taxonomy' => 'edition', 'field' => 'term_id', 'terms' => $edition->term_id, ), ), ); $query = new WP_Query( $args ); if ( $query->have_posts() ) : ?> <section class="edition-group"> <h2 class="edition-title">ATHARI | LAUREAT.E.S <?php echo esc_html( $edition->name ); ?></h2> <div class="flex-4"> <?php while ( $query->have_posts() ) : $query->the_post(); ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <?php if ( has_post_thumbnail() ) : ?> <div class="post-thumbnail mb-2"> <?php the_post_thumbnail( 'medium', array( 'class' => 'img-fluid' ) ); ?> </div> <?php endif; ?> <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3> </article> <?php endwhile; ?> </div> </section> <?php endif; wp_reset_postdata(); endforeach; else : echo '<p>Aucun lauréat trouvé.</p>'; endif; ?> </main><!-- #main --> </div><!-- #primary --> <?php endwhile; ?> <?php get_footer(); ?>
Save
Cancel