golden hour
/var/www/html/wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/groups
⬆️ Go Up
Upload
File/Folder
Size
Actions
create.php
16.09 KB
Del
OK
groups-loop.php
3.1 KB
Del
OK
index.php
4.32 KB
Del
OK
single
-
Del
OK
Edit: groups-loop.php
<?php /** * BuddyPress - Groups Loop * * Querystring is set via AJAX in _inc/ajax.php - bp_legacy_theme_object_filter(). * * @package BuddyPress * @subpackage bp-legacy * @version 3.0.0 */ ?> <?php /** * Fires before the display of groups from the groups loop. * * @since 1.2.0 */ do_action( 'bp_before_groups_loop' ); ?> <?php if ( bp_get_current_group_directory_type() ) : ?> <p class="current-group-type"><?php bp_current_group_directory_type_message() ?></p> <?php endif; ?> <?php if ( bp_has_groups( bp_ajax_querystring( 'groups' ) ) ) : ?> <div id="pag-top" class="pagination"> <div class="pag-count" id="group-dir-count-top"> <?php bp_groups_pagination_count(); ?> </div> <div class="pagination-links" id="group-dir-pag-top"> <?php bp_groups_pagination_links(); ?> </div> </div> <?php /** * Fires before the listing of the groups list. * * @since 1.1.0 */ do_action( 'bp_before_directory_groups_list' ); ?> <ul id="groups-list" class="item-list" aria-live="assertive" aria-atomic="true" aria-relevant="all"> <?php while ( bp_groups() ) : bp_the_group(); ?> <li <?php bp_group_class(); ?>> <?php if ( ! bp_disable_group_avatar_uploads() ) : ?> <div class="item-avatar"> <a href="<?php bp_group_permalink(); ?>"><?php bp_group_avatar( 'type=thumb&width=50&height=50' ); ?></a> </div> <?php endif; ?> <div class="item"> <div class="item-title"><?php bp_group_link(); ?></div> <div class="item-meta"> <span class="activity" data-livestamp="<?php bp_core_iso8601_date( bp_get_group_last_active( 0, array( 'relative' => false ) ) ); ?>"> <?php /* translators: %s: last activity timestamp (e.g. "Active 1 hour ago") */ printf( __( 'Active %s', 'buddypress' ), bp_get_group_last_active() ); ?> </span> </div> <div class="item-desc"><?php bp_group_description_excerpt(); ?></div> <?php /** * Fires inside the listing of an individual group listing item. * * @since 1.1.0 */ do_action( 'bp_directory_groups_item' ); ?> </div> <div class="action"> <?php /** * Fires inside the action section of an individual group listing item. * * @since 1.1.0 */ do_action( 'bp_directory_groups_actions' ); ?> <div class="meta"> <?php bp_group_type(); ?> / <?php bp_group_member_count(); ?> </div> </div> <div class="clear"></div> </li> <?php endwhile; ?> </ul> <?php /** * Fires after the listing of the groups list. * * @since 1.1.0 */ do_action( 'bp_after_directory_groups_list' ); ?> <div id="pag-bottom" class="pagination"> <div class="pag-count" id="group-dir-count-bottom"> <?php bp_groups_pagination_count(); ?> </div> <div class="pagination-links" id="group-dir-pag-bottom"> <?php bp_groups_pagination_links(); ?> </div> </div> <?php else: ?> <div id="message" class="info"> <p><?php _e( 'There were no groups found.', 'buddypress' ); ?></p> </div> <?php endif; ?> <?php /** * Fires after the display of groups from the groups loop. * * @since 1.2.0 */ do_action( 'bp_after_groups_loop' );
Save