Skip to content

Instantly share code, notes, and snippets.

@hyperframed
Created June 28, 2021 11:21
Show Gist options
  • Save hyperframed/c379cbce5f6c81bcb411279ae75a1295 to your computer and use it in GitHub Desktop.
Save hyperframed/c379cbce5f6c81bcb411279ae75a1295 to your computer and use it in GitHub Desktop.
Hivepress check if Listing is in Category
if ( $listing->get_categories__id() ) :
foreach ( $listing->get_categories() as $category ) :
$cats = array( 91, 92, 93, 94, 95 );
$catarray = $category->get_id();
if ( in_array( $catarray, $cats ) ) :
echo "Categorie ist Suche";
else:
echo "nope!";
endif;
endforeach;
endif;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment