Advertisement
Guest User

Untitled

a guest
Jun 11th, 2018
330
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.93 KB | None | 0 0
  1. <div id="real-estate-box" class="slideout">
  2. <div class="real-estate-box-wrapper">
  3. <p class="real-estate-box-title">For sale</p>
  4. </div>
  5. <div class="slideout-inner">
  6. <?php
  7. $args = array(
  8. 'post_type'=> 'real-estete',
  9. 'posts_per_page' => 4,
  10. 'orderby' => 'date',
  11. 'order' => 'DESC',
  12. );
  13. query_posts($args);
  14.  
  15. ?>
  16. <div class="see-all-real-estate col-xl-12">
  17. <?php echo '<a href="' . get_bloginfo('url') .'/realestate">see all</a>'; ?>
  18. </div>
  19. <ul>
  20. <?php
  21. $map_id = 1;
  22. if ( have_posts() ) :
  23. while ( have_posts() ) : the_post();
  24. $meta = get_post_meta( $post->ID, 'real_estate_location_details', true );
  25. ?>
  26. <script type="text/javascript">
  27. google.maps.event.addDomListener(window, 'load', function() {
  28. var map new google.maps.Map(document.getElementById('map-<?= $map_id ;?>'), {
  29. center: {
  30. lat: "<?= $meta['lat']; ?>",
  31. lng: "<?= $meta['lng']; ?>"
  32. },
  33. zoom: 5
  34. });
  35. });
  36. </script>
  37. <li class="col-xl-3">
  38. <a class="real-estate-title" href="<?php the_permalink() ?>">
  39. <?php the_title(); ?>
  40. </a><!-- .real-estate-title -->
  41. <div id="map-container">
  42. <div class="mapholder" id="map-<?= $map_id ;?>"></div>
  43. </div><!-- #map-container -->
  44. <a href="<?php the_permalink() ?>" class="real-estate-btn">see more</a>
  45. </li><!-- .col-xl-4 -->
  46. <?php
  47. $map_id++;
  48. endwhile; ?>
  49. </ul>
  50. <?php
  51. else:
  52. echo '<p class="no-real-estete">We don\'t have any real estates for sale on the moment</p>';
  53. endif;
  54. ?>
  55. </div>
  56. <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyC5rsZHHAmzP_pOuHGKEUtarn2QideIyUM" async defer></script>
  57. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement