Hi I need to modify the theme that I am currently using on my blog so that the recent post list and blog roll are hard coded into the template. Does anyone know the function names of these two functions ? Thanks, Brew
<?php wp_list_bookmarks(); ?> http://codex.wordpress.org/Template_Tags/wp_list_bookmarks Covers blogroll and recent posts should work with this (its set to 20) <p><?php wp_get_archives('type=postbypost&limit=20&format=custom'); ?></p> more info is here: http://codex.wordpress.org/Template_Tags/wp_get_archives