WordPress stats API key

This is why: http://plugins.trac.wordpress.org/browser/stats/tags/1.7.2/stats.php#L685 The deactivation hook deletes your database information. I’m guessing you’re manually deactivating the plugin, updating, and then re-activating? If so, that runs the deactivation hook. Fortunately, that’s not from the latest version. This is: http://plugins.trac.wordpress.org/browser/stats/tags/1.7.3/stats.php#L686 So that shouldn’t happen anymore. By the way, you shouldn’t think that this means you were … Read more

How to display number of page views on a post?

Try this Works on single site // post views function setAndViewPostViews($postID) { $count_key = ‘views’; $count = get_post_meta($postID, $count_key, true); if($count==”){ $count = 0; delete_post_meta($postID, $count_key); add_post_meta($postID, $count_key, ‘0’); }else{ $count++; update_post_meta($postID, $count_key, $count); } return $count; /* so you can show it */ } You need to add the following function to your theme’s … Read more

How to display BBpress statistics?

It seems BBPress got a function called bbp_get_statistics() read source. You can throw an array of $args = array(); in it. You also have a filter to modify the output: apply_filters( ‘bbp_get_statistics’, $statistics, $args ); Disclaimer: I’m no BBPress expert – I haven’t even installed it somewhere, just found this via google.

Looking for references to WordPress Popularity Statistics

Most of the CMS usage stats originate from Built With. BuiltWith Internet Technology Usage Statistics provides free information updated weekly regarding the most popular technology used on the web across all technology areas including analytics, advertising, frameworks and website widgets. I’ve put together a collection of various reports around the web. Google Trends WordPress.com (Does … Read more