Created
January 15, 2026 16:13
-
-
Save propertyhive/6dc31e0a8d531b5d74cfe7336f05c9bd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $tax_query = $query->get('tax_query'); | |
| if ( !is_array($tax_query) ) { $tax_query = array(); } | |
| $tax_query[] = [ | |
| 'taxonomy' => 'availability', | |
| 'field' => 'ID', | |
| 'terms' => ['4', '5', '104'], | |
| '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