Yup! I’ll post the code below.
While I’m a programmer by trade, I’m new to wordpress and PHP. (I usually do JSP or ASP.NET)
It shows the map, it just doesn’t show any of the markers on it; whereas if I put the show_fgeorge_map() call into the index page, then it works perfectly well.
When I look at fg_ajax.php, I assume that this will pull all posts out that are part of my wordpress instance, regardless of origin, but I can’t figure out how they make it onto your map, so I’m having trouble tracing the code to try and reverse engineer it.
Help? Thanks again!
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<h1><?php the_title(); ?></h1>
<?php show_fgeorge_map(180); ?>
<?php the_content(‘<p class=”serif”>Read the rest of this page »</p>’); ?>
<?php wp_link_pages(array(‘before’ => ‘<p>Pages: ‘, ‘after’ => ‘</p>’, ‘next_or_number’ => ‘number’)); ?>
<?php edit_post_link(‘Edit this entry’, ‘<p>’, ‘</p>’); ?>
</div>
<?php endwhile; endif; ?>