Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

scenarion hs

// WP_Query arguments
$args = array(
	'post_type'              => array( 'scenario' ),
	'nopaging'               => true,
	'ignore_sticky_posts'    => false,
	'order'                  => 'DESC',
);

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