New Version of BlogStats PCC for WordPress 2.3
Just a note to announce the release of a new version of BlogStats PCC. BlogStats PCC is a free WordPress plugin that provides an easy way to share your blog’s core statistics with your visitors. You can show off any or all of the following statistics:
- total number of posts
- total number of comments
- total number of categories
- total number of registered users
- total number of unregistered users
- total number of individual, static pages
- the date of the most recent post modification
- a link to the most recently published blog post
- a link to the name of the most recent commentator
- date/time of the most recent blog update, displayed in your default date format
BlogStats PCC enables you to display any or all of these statistics in any location (inside the loop or elsewhere). The plugin is completely free, totally customizable, and extremely easy to use. The new version (2.3.0a) works with all versions of WordPress (1.5 - 2.3), and is available for immediate download via the official BlogStats PCC information/download page.
Related articles
- BlogStats PCC Plugin
- New Version of Category LiveBookmarks Available
- Display the Total Number of WordPress Posts, Comments, and Categories
- AddMySite Plugin for WordPress
- New Version of AddMySite Released!
- New Version of Category LiveBookmarks Plus for WordPress 2.3
- New Widgetized Version of AddMySite Released!
About this article
This is article #426, posted by Perishable on Sunday, October 28, 2007 @ 04:59pm. Categorized as WordPress, and tagged with comments, plugins, posts, statistics, update, upgrade, WordPress. Updated on November 05, 2007. Visited 17638 times. 3 Responses »
Bookmark • Trackback • Comment • Subscribe • Explore
« A Killer Collection of Global CSS Reset Styles • Up • New Widgetized Version of AddMySite Released! »
1 • January 8, 2008 at 3:38 am — mvkozyrev says:
Great job! Thank you.
And I little corrected it for WPMU:
1.
function pagestats() {
global $wpdb;
global $numpages;
$numpages = $wpdb->get_var(”SELECT COUNT(*) FROM $wpdb->posts WHERE post_status = ‘publish’ AND post_type = ‘page’”);
if (0 get_var(”SELECT COUNT(*) FROM $wpdb->posts WHERE post_status = ‘publish’ AND post_type = ‘post’”);
if (0 < $numposts) $numposts = number_format($numposts);
echo ‘записей - ‘ . $numposts;
}
Now it works with WPMU correctly. Then I use small widget for display stats:
get_var(”SELECT post_author FROM ” . $wpmuBaseTablePrefix . $blog_id . “_posts”);
?>
Statistic