Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <body onload="initialize()">
- <?php if ( have_posts() ) : ?>
- <!-- WordPress has found matching posts -->
- <div style="display: none;">
- <?php $i = 1; ?>
- <?php while ( have_posts() ) : the_post(); ?>
- <?php if (get_geocode_latlng($post->ID) !== '' ) : ?>
- <div id="item<?php echo $i; ?>">
- <p><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></p>
- <?php the_content(); ?>
- </div>
- <?php endif; ?>
- <?php $i++; ?>
- <?php endwhile; ?>
- </div>
- <script type="text/javascript">
- var locations = [
- <?php $i = 1; while ( have_posts() ) : the_post(); ?>
- <?php if ( get_geocode_latlng($post->ID) !== '' ) : ?>
- {
- latlng : new google.maps.LatLng<?php get_geocode_latlng($post->ID); ?>,
- info : document.getElementById('item<?php echo $i; ?>')
- },
- <?php endif; ?>
- <?php $i++; endwhile; ?>
- ];
- </script>
- <?php else : ?>
- <!-- No matching posts, show an error -->
- <h1>Error 404 — Page not found.</h1>
- <?php endif; ?>
- <?php wp_footer(); ?>
- </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement