@kongondo
Thanks for the reply. I'm new with php and Processwire so I need a little help.
I managed to show featured image from "images field" in recent posts widget like this (on my Home page):
$blog = $modules->get("MarkupBlog");
$options = array('width'=>350, 'alt'=>'title', 'post_small_image' => 1, 'post_large_image' => 1, 'post_comments' => 0);
$content = $blog->renderPosts("limit=2", true, $options);
echo $content;
But image from "images field" doesn't appear when I enter Blog post or in Blog page (list of all posts). How do I show image on those pages?
Also, can the featured image be placed after the post title? At the moment it is before title.
Thanks.