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 );
// 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 );