Advertisement
luisruiz

insert php template

May 6th, 2015
297
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.09 KB | None | 0 0
  1. <body onload="initialize()">
  2.  
  3.         <?php if ( have_posts() ) : ?>
  4.             <!-- WordPress has found matching posts -->
  5.             <div style="display: none;">
  6.                 <?php $i = 1; ?>
  7.                 <?php while ( have_posts() ) : the_post(); ?>
  8.                     <?php if (get_geocode_latlng($post->ID) !== '' ) : ?>
  9.                         <div id="item<?php echo $i; ?>">
  10.                             <p><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></p>
  11.                             <?php the_content(); ?>
  12.                         </div>
  13.                     <?php endif; ?>
  14.                     <?php $i++; ?>
  15.                 <?php endwhile; ?>
  16.             </div>
  17.             <script type="text/javascript">
  18.                 var locations = [
  19.                     <?php  $i = 1; while ( have_posts() ) : the_post(); ?>
  20.                         <?php if ( get_geocode_latlng($post->ID) !== '' ) : ?>
  21.                             {
  22.                                 latlng : new google.maps.LatLng<?php get_geocode_latlng($post->ID); ?>,
  23.                                 info : document.getElementById('item<?php echo $i; ?>')
  24.                         },
  25.                         <?php endif; ?>
  26.                     <?php $i++; endwhile; ?>
  27.                 ];
  28.             </script>
  29.  
  30.         <?php else : ?>
  31.             <!-- No matching posts, show an error -->
  32.             <h1>Error 404 &mdash; Page not found.</h1>
  33.         <?php endif; ?>
  34.  
  35.         <?php wp_footer(); ?>
  36.     </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement