Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

GMDB vagas

// WP_Query arguments
$args = array(
	'post_type'              => array( 'vagas' ),
	'post_status'            => array( 'publish' ),
	's'                      => 'word',
	'posts_per_page'         => '10',
	'order'                  => 'DESC',
);

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