Info
- 4 posts
- 4 voices
- Started 4 years ago by Inquirer
- Latest reply from ganzua
- This topic is not resolved
Plugin to display Forum Statistics
-
- Posted 4 years ago #
Is there a plugin to display Forum Statistics in the Admin section?
-
- Posted 4 years ago #
I display statistics on my forum, but not with a plugin I just did this:
<div id="onlinelist"> <?php include_once("bb-includes/statistics-functions.php"); ?> <h2>Statistics</h2> Our users have made a total of <?php echo get_total_posts(); ?> posts in <?php echo get_total_topics(); ?> topics. <br/> We have <?php echo get_total_users(); ?> Registered Members. Our newest member is <?php if ( $users = get_recent_registrants(1) ) : foreach ( $users as $user ) : ?> <a href="<?php user_profile_link( $user->ID ); ?>"><?php echo get_user_name( $user->ID ); ?></a> <?php endforeach; endif; ?> <br/> <p><?php show_online_users(); ?></p> </div>This could be easily pluginized though, I might do it. But instead of waiting, I recommend doing it yourself or just pasting this on your front-page, wherever you want it to be displayed.
-
- Posted 4 years ago #
Funny you should ask:
http://bbpress.org/forums/topic/statistics-module-for-my-views-in-testing -
- Posted 4 years ago #
It is quite interesting :) . Perhaps "top topics by posts" and "top topics by views" will overlap.
-
You must log in to post.