I'm using Ben's fishpig code that puts related post excerpts on the frontpage: http://fishpig.co.uk/magento/wordpress-integration/services/recent-posts-block/#code
However, I've managed to put this code to use on both the front page and in a custom tab CMS block but I can't work out how to get the featured image to show along with the excerpt.
FRONT PAGE XML
**
* Display a list of your 5 most recent WordPress Posts
* Also include post excerpt, date and comment count
*
* {{block type="wordpress/sidebar_widget_posts" name="wordpress.widget.recent_posts" post_count="5" title="Latest Posts" excerpt="on" excerpt_length="1" date="on" comment_num="on" template="wordpress/sidebar/widget/categoryposts.phtml"}}
*/
-->
<reference name="head">
<action method="addItem"><type>skin_css</type><name>css/custom.css</name></action>
</reference>
<reference name="content">
<block type="wordpress/sidebar_widget_posts" name="wordpress.widget.recent_posts" as="recent_posts" template="wordpress/sidebar/widget/categoryposts.phtml">
<action method="setTitle"><title>Latest Posts</title></action>
<action method="setPostCount"><post_count>5</post_count></action>
<action method="setExcerpt"><display>on</display></action>
**HELP**--><action method="setFeaturedImage"><display>on</display></action>
<action method="setDate"><date>on</date></action>
<action method="setCommentNum"><comments>on</comments></action>
</block>
</reference>
HERE IS THE CODE FOR THE CUSTOM TAB:
{{block type="wordpress/sidebar_widget_posts" name="wordpress.widget.recent_posts" post_count="5" category_id="19" title="Latest Posts" excerpt="on" excerpt_length="1" date="on" comment_num="on" template="wordpress/sidebar/widget/categoryposts.phtml"}}
Thank you!