Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

updating_time

$meta_query = array(
	'relation' => 'OR',
	array(
		'key'     => 'updating_time',
		'value'   => 'time() - ( 2* 604800)',
		'compare' => '<=',
		'type'    => 'NUMERIC',
	),
	array(
		'key'     => 'updating_time',
		'compare' => 'NOT EXISTS',
	),
	array(
	),
);