Inline documentation for hooks in wp-admin/user/admin.php.

Props leewillis77 for the initial patch. Props kpdesign.
Fixes #25825.


git-svn-id: https://develop.svn.wordpress.org/trunk@26344 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Drew Jaynes 2013-11-23 22:46:22 +00:00
parent 96d3d38f9c
commit c8d84aa39b

View File

@ -17,6 +17,16 @@ if ( ! is_multisite() ) {
}
$redirect_user_admin_request = ( ( $current_blog->domain != $current_site->domain ) || ( $current_blog->path != $current_site->path ) );
/**
* Filter whether a user should be redirected to the Global Dashboard in Multisite.
*
* Users not assigned to any sites in the network will be redirected to the Global
* Dashboard after logging in.
*
* @since 3.2.0
*
* @param bool $redirect_user_admin_request Whether the request should be redirected.
*/
$redirect_user_admin_request = apply_filters( 'redirect_user_admin_request', $redirect_user_admin_request );
if ( $redirect_user_admin_request ) {
wp_redirect( user_admin_url() );