Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

HST – Courses Query

// WP_Query arguments
$args = array (
	'post_type'              => array( 'courses' ),
	'category_name'          => 'Forklifts',
	'nopaging'               => true,
	'posts_per_page'         => '-1',
);

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