| Server IP : 104.26.4.103 / Your IP : 216.73.216.4 Web Server : nginx/1.27.1 System : Linux in-5 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64 User : arabianexpress ( 1872) PHP Version : 8.0.30 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /storage/v9321/aurointeriors/public_html/wp-content/themes/archub/bbpress/ |
Upload File : |
<?php /** * Statistics Content Part * * @package bbPress * @subpackage Theme */ // Get the statistics $stats = bbp_get_statistics(); ?> <dl role="main"> <?php do_action( 'bbp_before_statistics' ); ?> <dt><?php _e( 'Registered Users', 'archub' ); ?></dt> <dd> <strong><?php echo esc_html( $stats['user_count'] ); ?></strong> </dd> <dt><?php _e( 'Forums', 'archub' ); ?></dt> <dd> <strong><?php echo esc_html( $stats['forum_count'] ); ?></strong> </dd> <dt><?php _e( 'Topics', 'archub' ); ?></dt> <dd> <strong><?php echo esc_html( $stats['topic_count'] ); ?></strong> </dd> <dt><?php _e( 'Replies', 'archub' ); ?></dt> <dd> <strong><?php echo esc_html( $stats['reply_count'] ); ?></strong> </dd> <dt><?php _e( 'Topic Tags', 'archub' ); ?></dt> <dd> <strong><?php echo esc_html( $stats['topic_tag_count'] ); ?></strong> </dd> <?php if ( !empty( $stats['empty_topic_tag_count'] ) ) : ?> <dt><?php _e( 'Empty Topic Tags', 'archub' ); ?></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 _e( 'Hidden Topics', 'archub' ); ?></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 _e( 'Hidden Replies', 'archub' ); ?></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 );