Front End Display functions
Display blog categories:
show_blog_categories();
Display blog search bar:
show_blog_search();
Display blog archives:
show_blog_archives();
Show your blog's most recent posts - This function has 4 optional available parameters:
show_blog_recent_posts($excerpt=false, $excerpt_length=null, $thumbnail=null, $read_more=null);
// Usage example (display excerpt, default excerpt length, display thumbnail and display read more link):
show_blog_recent_posts(true, null, true, true);