Hello,
Please can you help me figure out the code I need to create the Latest News column as featured in the demo?
From the demo, I see that a post has a featured image, from which a thumbnail is created with the title and an excerpt from the post. I got as far as creating the title and excerpt (see below) which is included in the footer column widget, but got stuck with the resizing of the image. Please can you help?!
Any help is very much appreciated. Thank you!
<?php query_posts('category_name=news-and-updates&showposts=5'); ?>
<?php while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink(); ?>">
<?php the_title('<h4>', '</h4>'); ?>
<?php the_content("Continue reading " . the_title('', '', false)); ?>
</a> </li>
<?php endwhile; ?>














