[Plugin: Events Manager] Getting Location ID on location pages
-
This has been giving me issues and I’m sure I just missing something stupid but, I cant seem to get the current location ID for a location on a custom format page.
I have been using this on EVENT pages to pull location data:
<?php global $EM_Event; $lat = $EM_Event->get_location()->location_latitude; $lng = $EM_Event->get_location()->location_longitude; ?>
But
$EM_Event
doesn’t work on LOCATION pages likely because it sits outside the event data I’m guessing? So I tried using$EM_Location
:<?php global $EM_Location; $currentid = $EM_Location->post_id; //or _location_id or location_id? ?>
But this doesnt seem to do the trick. What am I missing here?
Also, using:
<?php global $wp_query; $thePostID = $wp_query->post->ID; ?>
I get the post ID but this doesn’t seem to match up with the location ID.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘[Plugin: Events Manager] Getting Location ID on location pages’ is closed to new replies.