if ( $query-> is_archive() || is_home() ) :
$query->set('tax_query',
array(
array(
'taxonomy'=>'status',
'terms'=>array( 'expired' ),
'field'=>'slug',
'operator'=>'NOT IN'
)
)
);
return;
endif;
Alpha Ralpha Scribbles by yn7o
if ( $query-> is_archive() || is_home() ) :
$query->set('tax_query',
array(
array(
'taxonomy'=>'status',
'terms'=>array( 'expired' ),
'field'=>'slug',
'operator'=>'NOT IN'
)
)
);
return;
endif;