I am trying to get the "Post Image" Plugin by Kaf Oseo up and running on a site and it isn't working.
I am using WordPress 2.1.3 and it is the only plugin activated.
I have added the following code to page.php:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2>
<?php the_title(); ?>
</h2>
<div class="entry">
<div class="post_image">
<?php post_image(); ?>
</div>
<?php the_content(); ?>
</div>
</div>
<?php endwhile; endif; ?>
The site is then refusing to load past <?php post_image(); ?>, everything loads fine up to this point but no further.
Thanks
Tom