Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: pre_get_blogs_of_user

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
792       * get_blogs_of_user(), returning that value instead.
793       *
794       * @since 4.6.0
795       *
796       * @param null|object[] $sites   An array of site objects of which the user is a member.
797       * @param int           $user_id User ID.
798       * @param bool          $all     Whether the returned array should contain all sites, including
799       *                               those marked 'deleted', 'archived', or 'spam'. Default false.
800       */
801      $sites = apply_filters( 'pre_get_blogs_of_user', null, $user_id, $all );
802
803      if ( null !== $sites ) {
804           return $sites;
805      }
806
807      $keys = get_user_meta( $user_id );
808      if ( empty( $keys ) ) {
809           return array();
810      }