Advertisement
Guest User

Untitled

a guest
Jan 21st, 2015
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <div class="mapp-iw">
  2.  
  3. <div class="mapp-body">
  4.  
  5. <?php echo $poi->get_thumbnail(array('class' => 'mapp-thumb')); ?>
  6.  
  7. <div class="mapp-title">
  8. <?php echo $poi->get_title_link(); ?>
  9. </div>
  10.  
  11. <?php echo $poi->get_body(); ?><br>
  12. <?php
  13. if ($poi->postid) {
  14. if( get_post_meta($poi->postid, "phone_number", true) ):
  15. echo 'Ph:';
  16. echo get_post_meta($poi->postid, "phone_number", $single = true);
  17. endif;
  18. } ?><br><br>
  19. <a href="<?php the_permalink();?>" class="btn">More Details</a>
  20. </div>
  21.  
  22. <div class="mapp-links">
  23. <?php echo $poi->get_links(); ?>
  24. </div>
  25. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement