Archives by Month:
[insert_php]
wp_get_archives( array( ‘type’ => ‘monthly’, ‘show_post_count’ => ‘true’ ));
[/insert_php]
Archives by Subject:
[insert_php]
wp_list_categories(array(‘show_post_count’ => ‘true’ ) );
[/insert_php]
Last (100) post:
[insert_php]
wp_get_archives( array( ‘type’ => ‘postbypost’, ‘limit’ => 100) );
[/insert_php]
Tags:
[insert_php]
wp_tag_cloud( array( ‘separator’ => ” ; “, ) );
[/insert_php]