git-svn-id: https://192.168.0.254/svn/Proyectos.ASong2U_Web/trunk@86 cd1a4ea2-8c7f-e448-aada-19d1fee9e1d6
16 lines
389 B
PHP
16 lines
389 B
PHP
<?php
|
|
// Exit if accessed directly
|
|
if ( !defined( 'ABSPATH' ) ) exit;
|
|
|
|
function bp_blogs_redirect_to_random_blog() {
|
|
global $bp, $wpdb;
|
|
|
|
if ( bp_is_blogs_component() && isset( $_GET['random-blog'] ) ) {
|
|
$blog = bp_blogs_get_random_blogs( 1, 1 );
|
|
|
|
bp_core_redirect( get_site_url( $blog['blogs'][0]->blog_id ) );
|
|
}
|
|
}
|
|
add_action( 'bp_actions', 'bp_blogs_redirect_to_random_blog' );
|
|
|
|
?>
|