Get Keto, Paleo, and Carnivore Recipes

Home » Snippets » Get Keto, Paleo, and Carnivore Recipes
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',
			'paleo',
			'carnivore'
		],
		'field' => 'slug',
		'include_children' => true,
		'operator' => 'IN',
	],
];

$tax_query = new WP_Tax_Query( $query_atts );

			

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