On this page
apply_filters( 'pre_get_blogs_of_user', null|object[] $sites, int $user_id, bool $all )
Filters the list of a user’s sites before it is populated.
Description
Returning a non-null value from the filter will effectively short circuit get_blogs_of_user() , returning that value instead.
Parameters
$sitesnull|object[]-
An array of site objects of which the user is a member.
$user_idint-
User ID.
$allbool-
Whether the returned array should contain all sites, including those marked
'deleted','archived', or'spam'. Default false.
Source
File: wp-includes/user.php. View all references
$sites = apply_filters( 'pre_get_blogs_of_user', null, $user_id, $all );
Related
Used By
| Used By | Description |
|---|---|
| get_blogs_of_user() wp-includes/user.php | Gets the sites a user belongs to. |
Changelog
| Version | Description |
|---|---|
| 4.6.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/hooks/pre_get_blogs_of_user