Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save propertyhive/6e39603939c441479ae8f0ec7ae54cce to your computer and use it in GitHub Desktop.
Save propertyhive/6e39603939c441479ae8f0ec7ae54cce to your computer and use it in GitHub Desktop.
add_action( 'elementor/query/onmarketpropertyquery', 'remove_sold_from_elementor_query', 99 );
function remove_sold_from_elementor_query( $query )
{
$tax_query = $query->get('tax_query');
$tax_query[] = array(
'taxonomy' => 'availability',
'terms' => array(15),
'operator' => 'NOT IN',
);
$query->set( 'tax_query', $tax_query );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment