Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

fitness tips wp query

// WP_Query arguments
$args = array (
	'post_type'              => array( 'fitness_tips' ),
	'nopaging'               => false,
	'posts_per_page'         => '1',
	'orderby'                => 'rand',
);

// The Query
$query = new WP_Query( $args );