testimonials query
// WP_Query arguments
$args = array(
'post_type' => array( 'empform_courses' ),
'posts_per_page' => '1',
'orderby' => 'rand',
);
// The Query
$testimonials_query = new WP_Query( $args );
// The Loop
if ( $testimonials_query->have_posts() ) {
while ( $testimonials_query->have_posts() ) {
$testimonials_query->the_post();
// do something
}
} else {
// no posts found
}
// Restore original Post Data
wp_reset_postdata();