buddypress/bp-blogs/bp-blogs-actions.php
r-a-y 7cf0dcdde8 Audit home_url() vs. site_url() usage. Fixes #2549.
Also replace instances of site_url() concatenation with native BP functions.

git-svn-id: https://buddypress.svn.wordpress.org/trunk@6975 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
2013-05-01 04:10:19 +00:00

36 lines
845 B
PHP

<?php
/**
* BuddyPress Blogs Actions
*
* @package BuddyPress
* @subpackage BlogsActions
*/
// Exit if accessed directly
if ( !defined( 'ABSPATH' ) ) exit;
/**
* Redirect to a random blog in the multisite network
*
* @since BuddyPress (1.0)
* @package BuddyPress
* @subpackage BlogsActions
*/
function bp_blogs_redirect_to_random_blog() {
// Bail if not looking for a random blog
if ( ! bp_is_blogs_component() || ! isset( $_GET['random-blog'] ) )
return;
// Multisite is active so find a random blog
if ( is_multisite() ) {
$blog = bp_blogs_get_random_blogs( 1, 1 );
bp_core_redirect( get_home_url( $blog['blogs'][0]->blog_id ) );
// No multisite and still called, always redirect to root
} else {
bp_core_redirect( bp_core_get_root_domain() );
}
}
add_action( 'bp_actions', 'bp_blogs_redirect_to_random_blog' );