name; if ( $cat == 'Urlaub' ){ $tagebuch = new WP_Query( array( 'category_name' => 'Tagebuch', 'posts_per_page' => -1, 'meta_query' => array( array( 'key' => 'urlaub', // name of custom field 'value' => get_the_ID(), // matches exaclty "123", not just 123. This prevents a match for "1234" 'compare' => '=' ) ) ) ); if ($tagebuch->have_posts()) : echo('

Tagebuch Einträge:

'); echo(' '); endif; wp_reset_query(); $album = new WP_Query( array( 'category_name' => 'Album', 'posts_per_page' => -1, 'meta_query' => array( array( 'key' => 'urlaub', // name of custom field 'value' => get_the_ID(), // matches exaclty "123", not just 123. This prevents a match for "1234" 'compare' => '=' ) ) ) ); if ($album->have_posts()) : echo('

Fotoalben:

'); echo(' '); endif; wp_reset_query(); $touren = new WP_Query( array( 'category_name' => 'Tour', 'posts_per_page' => -1, 'meta_query' => array( array( 'key' => 'urlaub', // name of custom field 'value' => get_the_ID(), // matches exaclty "123", not just 123. This prevents a match for "1234" 'compare' => '=' ) ) ) ); if ($touren->have_posts()) : echo('

Touren:

'); echo(' '); endif; wp_reset_query(); } elseif($cat == 'Tour') { $urlaub = new WP_Query(array('p' => get_field('urlaub')[0])); if ($urlaub->have_posts()) : echo('

Urlaub:

'); echo(' '); endif; wp_reset_query(); } }