File "content-statistics-20241106055736.php"
Full Path: /home/jlklyejr/public_html/wp-content/test/test/test/wp-content/plugins/bbpress/templates/default/bbpress/content-statistics-20241106055736.php
File size: 1.88 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Statistics Content Part
*
* @package bbPress
* @subpackage Theme
*/
// Exit if accessed directly
defined( 'ABSPATH' ) || exit;
// Get the statistics
$stats = bbp_get_statistics(); ?>
<dl role="main">
<?php do_action( 'bbp_before_statistics' ); ?>
<dt><?php esc_html_e( 'Registered Users', 'bbpress' ); ?></dt>
<dd>
<strong><?php echo esc_html( $stats['user_count'] ); ?></strong>
</dd>
<dt><?php esc_html_e( 'Forums', 'bbpress' ); ?></dt>
<dd>
<strong><?php echo esc_html( $stats['forum_count'] ); ?></strong>
</dd>
<dt><?php esc_html_e( 'Topics', 'bbpress' ); ?></dt>
<dd>
<strong><?php echo esc_html( $stats['topic_count'] ); ?></strong>
</dd>
<dt><?php esc_html_e( 'Replies', 'bbpress' ); ?></dt>
<dd>
<strong><?php echo esc_html( $stats['reply_count'] ); ?></strong>
</dd>
<dt><?php esc_html_e( 'Topic Tags', 'bbpress' ); ?></dt>
<dd>
<strong><?php echo esc_html( $stats['topic_tag_count'] ); ?></strong>
</dd>
<?php if ( ! empty( $stats['empty_topic_tag_count'] ) ) : ?>
<dt><?php esc_html_e( 'Empty Topic Tags', 'bbpress' ); ?></dt>
<dd>
<strong><?php echo esc_html( $stats['empty_topic_tag_count'] ); ?></strong>
</dd>
<?php endif; ?>
<?php if ( ! empty( $stats['topic_count_hidden'] ) ) : ?>
<dt><?php esc_html_e( 'Hidden Topics', 'bbpress' ); ?></dt>
<dd>
<strong>
<abbr title="<?php echo esc_attr( $stats['hidden_topic_title'] ); ?>"><?php echo esc_html( $stats['topic_count_hidden'] ); ?></abbr>
</strong>
</dd>
<?php endif; ?>
<?php if ( ! empty( $stats['reply_count_hidden'] ) ) : ?>
<dt><?php esc_html_e( 'Hidden Replies', 'bbpress' ); ?></dt>
<dd>
<strong>
<abbr title="<?php echo esc_attr( $stats['hidden_reply_title'] ); ?>"><?php echo esc_html( $stats['reply_count_hidden'] ); ?></abbr>
</strong>
</dd>
<?php endif; ?>
<?php do_action( 'bbp_after_statistics' ); ?>
</dl>
<?php unset( $stats );