Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

TEST GIL 01

// WP_Query arguments
$args = array(
	'post_status'            => array( 'publish' ),
	's'                      => 'éléments de recherche',
	'tax_query'              => array(
		array(
			'taxonomy'         => 'paper_theme',
			'terms'            => 'psychologie-fr',
		),
	),
	'date_query'             => array(
		'relation' => 'OR',
		array(
			'year'          => 2024,
		),
		array(
			'year'          => 1975,
		),
	),
);

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