Skip to main content

Past Performances

<?php
$category_slug = ‘performances’; // Replace with your category slug
$args = array(
‘category_name’ => $category_slug,
‘posts_per_page’ => 5 // Number of posts to display
);
$category_query = new WP_Query($args);

if ($category_query->have_posts()) :
while ($category_query->have_posts()) : $category_query->the_post();
// Display post content here, e.g., the_title(), the_excerpt(), etc.
endwhile;
endif;
wp_reset_postdata();
?>