Advertisement
BakerMan

embed_tribe_venue_map() temp workaround

Mar 7th, 2014
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. function embed_tribe_venue_map($venue_id, $width = null, $height = null) {
  2.     global $post;
  3.     $post_id = $post->ID;
  4.  
  5.     $post->ID = $venue_id;
  6.     $map = tribe_get_embedded_map( $venue_id, $width, $height );
  7.  
  8.     $post->ID = $post_id;
  9.     return $map;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement