Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Custom field generico

$meta_query = array(
	'relation' => 'OR',
	array(
		'key'     => 'cognome',
		'compare' => 'NOT EXISTS',
		'type'    => 'CHAR',
	),
	array(
		'key'     => 'cognome',
	),
);