get_header(); <div class=”container“> <h1>Portfolio de Vidéaste</h1> <?php $args = array(‘post_type‘ => ‘portfolio‘); $portfolio_query = new WP_Query($args); if ($portfolio_query->have_posts()) : while ($portfolio_query->have_posts()) : $portfolio_query->the_post(); ?> <div class=”portfolio–item“> <h2><?php the_title(); ?></h2> <div class=”video“> <?php the_content(); ?> </div> </div> <?php endwhile; else : ?> <p>Aucun projet trouvé.</p> <?php endif; ?> </div> <?php get_footer(); ?>