I am using the WP thumbnail function on my blog: http://robcubbon.com/blog
This is what I have in my functions.php
add_theme_support( 'post-thumbnails' );
set_post_thumbnail_size( 150, 150, true );
I would like to set up a custom template page where I will re-list the last 5 or 10 blog posts in the footer with a much smaller thumbnail, say 50px by 50px.
Would the best way to do this be with a custom field that specifies an image route of the 50px thumbnail which I could then call in the page template or is there a better way of doing it with WP's post-thumbnails?