Hello,
I hope someone can help me. I'm trying to display my post_image in the hook.
'thesis_hook_before_post_box'
I'm using this code but it is not working.
`function thesis_post_image() {
?>
<div class="feat-image">
"><img src="<?php echo $the_post_image ?>" alt="" />
<span>Photo by Steve Snodgrass</span>
</div>
<?php }
add_action('thesis_hook_before_post_box', 'thesis_post_image');
You can look at the site here, I want the post_image to display flush on top of the content box. The image showes up but not where I want it to. Example: http://www.traviscurrier.com/
Plus I want it to show up in the actual post but the picture is not showing up. Example: http://www.traviscurrier.com/test-1/
Can anyone help me.
T