$num_posts = wp_count_posts( 'post' );
$num_posts = $num_posts->publish; //publish, draft
$num_posts = sprintf( __ngettext( ‘%s Post’, ‘%s Posts’, $num_posts ), number_format_i18n( $num_posts ) );
$num_pages = wp_count_posts( ‘page’ );
$num_pages = $num_pages->publish; //publish
$num_pages = sprintf( __ngettext( ‘%s Page’, ‘%s Pages’, $num_pages ), number_format_i18n( $num_pages ) );
$num_cats = wp_count_terms(‘category’);
$num_tags = wp_count_terms(‘post_tag’);
$num_comm = get_comment_count();
$num_comm = $num_comm['approved']; //approved, awaiting_moderation, spam, total_comments
$num_comm = sprintf( __ngettext( ‘%s Categorie’, ‘%s Categories’, $num_comm ), number_format_i18n( $num_comm ) );
$num_comm2 = wp_count_comments( );
$num_comm2 = $num_comm2->approved; //approved, moderated, spam, total_comments
echo ‘Welcome to the front page of the archives. Here you will find an easy way to navigate through the history of the site. The archives currently span ‘ . $num_posts . ‘ and ‘ . $num_pages . ‘ with ‘ . $num_tags . ‘ tags in ‘ . $num_cats . ‘ categories. These posts have been commented on ‘ . $num_comm2 . ‘ times.’;
?>
Browse By Date
Browse By Category
Browse By Tag
[hs_wp_tag_cloud]