groups_action_redirect_to_random_group()
Catch requests for a random group page (example.com/groups/?random-group) and redirect.
Description
Source
File: bp-groups/actions/random.php
function groups_action_redirect_to_random_group() { if ( bp_is_groups_component() && isset( $_GET['random-group'] ) ) { $group = BP_Groups_Group::get_random( 1, 1 ); bp_core_redirect( trailingslashit( bp_get_groups_directory_permalink() . $group['groups'][0]->slug ) ); } }
Changelog
Version | Description |
---|---|
BuddyPress 1.2.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.