Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Grant Query for Dropdown

// WP_Query arguments
$args = array(
	'post_type'              => array( 'grants' ),
	'post_status'            => array( 'publish' ),
	'author'                 => '1',
);

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