Check If posts exist in custom post type category, outside of loop
It all boils down to WP_Query in the end even if you use get_posts, here’s my modified version: $hasposts = get_posts(‘post_type=sc-events&category=40’); if( !empty ( $hasposts ) ) { ..// show the drop down menu } or $query = new WP_Query(array( ‘post_type’ => ‘sc-events’, ‘category’ => 40 )); if( $query->have_posts() ){ echo ‘we have posts’; } … Read more