pre_wp_is_site_initialized

pre_wp_is_site_initialized

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('pre_wp_is_site_initialized') is found 1 times:

  • /wp-includes/ms-site.php line 926
    922
    923
    924
    925
    926
    927
    928
    929
    930
    931
    932
    * @param bool|null $pre     The value to return instead. Default null
     *                           to continue with the check.
     * @param int       $site_id The site ID that is being checked.
     */
    $pre = apply_filters( 'pre_wp_is_site_initialized', null, $site_id );
    if ( null !== $pre ) {
        return (bool) $pre;
    }
     
    $switch = false;
    if ( get_current_blog_id() !== $site_id ) {