Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: ms_site_check

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
70 function ms_site_check() {
71
72      /**
73       * Filters checking the status of the current blog.
74       *
75       * @since 3.0.0
76       *
77       * @param bool null Whether to skip the blog status check. Default null.
78      */
79      $check = apply_filters( 'ms_site_check', null );
80      if ( null !== $check )
81           return true;
82
83      // Allow super admins to see blocked sites
84      if ( is_super_admin() )
85           return true;
86
87      $blog = get_site();
88