// // add helpful admin links to the group admin display // function scg_add_admin_links_to_group_avatar( $avatar ) { global $bp; if ( !is_site_admin() ) // only show these links for the site admin return; echo ''; echo ''; } add_filter( 'bp_directory_groups_item', 'scg_add_admin_links_to_group_avatar', 20 ); add_filter( 'bp_before_group_header_meta', 'scg_add_admin_links_to_group_avatar', 20 );