Reporte obituarios
// WP_Query arguments
$args = array(
'post_type' => array( 'obituario_post_type' ),
'nopaging' => true,
'order' => 'DESC',
'orderby' => 'id',
'date_query' => array(
'relation' => 'AND',
array(
'year' => 2021,
'month' => 1,
'day' => 1,
'dayofweek_iso' => 1,
'compare' => '>=',
'column' => 'post_date',
),
array(
'year' => 2021,
'month' => 12,
'day' => 31,
'dayofweek_iso' => 1,
'hour' => 23,
'minute' => 59,
'second' => 59,
'compare' => '<=',
'column' => 'post_date',
),
),
);
// The Query
$query = new WP_Query( $args );