'Voting', // Changed to 'voting' category slug
'posts_per_page' => 10, // Number of posts to display
'orderby' => 'date',
'order' => 'DESC'
);
// The custom query
$custom_query = new WP_Query($args);
if ($custom_query->have_posts()) :
while ($custom_query->have_posts()) : $custom_query->the_post(); ?>
No posts found in the voting category.