Home

‘post’,
‘posts_per_page’ => 1,
‘category_name’ => ‘current-auction’
]);

if ( $auction->have_posts() ) :
while ( $auction->have_posts() ) : $auction->the_post();
the_title(‘

‘,’

‘);
the_content();
endwhile;
wp_reset_postdata();
else :
echo ‘

No current auction at this time.

‘;
endif;
?>