Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

jurado query

// WP_Query arguments
$args = array(
	'post_type'              => array( 'jurado_imt_forum' ),
	'post_status'            => array( 'publish' ),
	'orderby'                => 'modified',
);

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