$args = array(
'post_type' => 'shop_coupon',
'posts_per_page' => 1,
'orderby' => 'rand'
);
$wp_query = new WP_Query( $args );
if ( $wp_query->have_posts() ) {
while ( $wp_query->have_posts() ) {
$wp_query->the_post();
the_title();
}
}
wp_reset_postdata();