VoilĂ , I want to list today posts in my sidebar. How can I do this? maybe with a query_posts or get_posts function?..
Thank you
VoilĂ , I want to list today posts in my sidebar. How can I do this? maybe with a query_posts or get_posts function?..
Thank you
Look at the template tag, wp_get_archives(), and put that in your sidebar.php.
<?php wp_get_archives('type=daily&limit=1'); ?>
This topic has been closed to new replies.