Code Samples: All Posts Without A Specific Term - Pods Docs

PHOTO EMBED

Mon Nov 27 2023 19:41:31 GMT+0000 (Coordinated Universal Time)

Saved by @dmsearnbit

	$params = array (
		'where' =>
			array (
				'relation' => 'OR',
					array (
						'field' => 'post_tag.name',
						'value' =>
							array (
								0 => 'foods',
							),
						'compare' => 'IN',
					),
					array (
						'field' => 'post_tag.name',
						'value' =>
							array (
								0 => 'NULL',
							),
						'compare' => 'NOT IN',
					),
			),
	);
	$pods = pods( 'industry', $params );
content_copyCOPY

https://docs.pods.io/code-snippets/posts-without-specific-term/