bbPress

Simple, Fast, Elegant

bbPress support forums » Plugins

Plugin to display Forum Statistics

(4 posts)
  • Started 1 year ago by Inquirer
  • Latest reply from ganzua
  • This topic is not resolved

No tags yet.

  1. Inquirer
    Member

    Is there a plugin to display Forum Statistics in the Admin section?

    Posted 1 year ago #
  2. 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 1 year ago #
  3. It is quite interesting :) . Perhaps "top topics by posts" and "top topics by views" will overlap.

    Posted 1 year ago #

RSS feed for this topic

Reply

You must log in to post.

Code is Poetry.