Its hard to describe my problem so please bear with me...
following from this plugin thread - http://wordpress.org/support/topic/43143#post-242723
I used the plugin from that thread. I wanted to use the plugin to associate a picture with the posts that I make. This is achieved using <?php the_meta_feature(); ?> in the post template. However as I said in that thread I wanted in my sidebar a list of the most recent posts made with their associated preview picture
now, I know how to create a recent post list, either with plugins or using this:
<?php get_archives('postbypost', '3', 'custom', '', '
'); ?>
however im not sure on how to call up a list of the recent posts with their associated pics! Is there a way to include the the_meta_feature with in the get_archives tag or with a recent posts plugin ? Or is there another solution? basically I want to use a tag within a tag - sorta similar to this problem:
http://codex.wordpress.org/Talk:Template_Tags/get_archives
which unfortunately didn't get an answer
any help would be greatly appreciated!!?