Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

cadastro de obras atualiação

// WP_Query arguments
$args = array(
	'post_type'              => array( 'cadastro_de_obras' ),
	'posts_per_page'         => '20',
	'meta_query'             => array(
		array(
			'key'     => 'fim_acabamento',
			'value'   => '$today',
			'compare' => '>=',
			'type'    => 'DATE',
		),
	),
);

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