Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function is_events_page() {
- global $wp;
- $query = wp_parse_args($wp->matched_query);
- if (array_key_exists('tribe_events', $query) or
- array_key_exists('tribe_venue', $query))
- return true;
- if (array_key_exists('post_type', $query) and
- $query['post_type'] === 'tribe_events')
- return true;
- return false;
- }
Advertisement
Add Comment
Please, Sign In to add comment