Get All Recipes Except Keto

Home » Snippets » Get All Recipes Except Keto
0

Created with:

WP_Tax_Query Generator

Visibility: 

public

Creator: WPTurbo Team

Customize with WPTurbo AI
X

Add Snippet To Project

New Project
Add To Existing Project
				$query_atts = [
	'relation' => 'AND',
	[
		'taxonomy' => 'recipes',
		'terms' => [
			'keto'
		],
		'field' => 'slug',
		'include_children' => true,
		'operator' => 'NOT IN',
	],
];

$tax_query = new WP_Tax_Query( $query_atts );

			

Register an account to save your snippets or go Pro to get more features.