Posted at 12:52h
in
WordPress,
Work
by Mark
This is the bit i'm srtuggling with:
[code]
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2><a href="<?php the_permalink() ?>" rel="bookmark">
<?php if( get_post_meta($post->ID, "hpbottom", true) ): ?>
<img style="float:left;margin:0px 10px 0px 0px;width:50px; height:50px;" src="<?php echo get_post_meta($post->ID, "hpbottom", true); ?>" width="150" height="150" alt="<?php the_title(); ?>" />
<?php include(TEMPLATEPATH."/Cat_Thumb_Assign.php");?>
<?php endif; ?>
<?php...