So after a little trial and error I managed to create a "Recent Posts" sidebox for WOZ. Hira's code has always eluded to this sidebox being there. (there were definitions in the language files for a "Recent Posts" sidebox). Seemed logical that this should be one of the included sideboxes.

I have attached the "Recent Posts" sidebox I created in case anyone else finds this useful. I may update the latest WOZ install files to include it and upload it to the downloads section..

At first I tried using the WordPress "get_posts" tag (http://codex.wordpress.org/Template_Tags/get_posts). Turns out that this code didn't work:
Code:
 
get_posts('arguments');
I ended up with a blank sidebox. So after a quick Google search I found these two sites:
The Easy Way To Display Recent Posts in WordPress
How to Display Recent Posts in WordPress

Both of these sites included instructions for two essentially idential methods to display recent posts. I often see folks asking about how to display recent posts on their store main pages.. So I thought these links might also be useful for this purpose.

However, for the "Recent Posts" sidebox, these posts were the hint I was looking for.. I chose the first method because.. well because I found it 1st.. However, I have tested both methods, and they both work. I included code for both in the "Recent Posts" sidebox code (one is active the other commented out) just in case someone (for whatever reason) decided they liked the other method better..

Hope someone else finds this WOZ sidebox useful..