Good morning!
I need to add the venue and organizer names to the header of my pages. I’ve been modifying my header.php to include titles from various calendar pages. The following code correctly displays “test” on a venue page:
elseif ( get_query_var('post_type') === 'tribe_venue') {
echo '
test
';
}
I want it to dynamically pull the venue name so depending on what page you’re on, that’s the title that displays. I’ve gotten as far as this:
elseif ( get_query_var('post_type') === 'tribe_venue') {
$venue_id = get_the_ID();
echo '
'.$venue_id.'
';
}
However, it returns a “0”. I can’t seem to figure out what I’m missing. Any thoughts?
Thanks so much!