diff --git a/src/wp-settings.php b/src/wp-settings.php
index 8beee6f..2284a17 100644
a
|
b
|
if ( is_multisite() ) { |
111 | 111 | |
112 | 112 | register_shutdown_function( 'shutdown_action_hook' ); |
113 | 113 | |
| 114 | /** |
| 115 | * Fires after WordPress has been partially loaded. |
| 116 | * |
| 117 | * Use this action to execute a callback very early in the bootstrap process. |
| 118 | * |
| 119 | * @since 4.6.0 |
| 120 | */ |
| 121 | do_action( 'shortinit' ); |
| 122 | |
114 | 123 | // Stop most of WordPress from being loaded if we just want the basics. |
115 | 124 | if ( SHORTINIT ) |
116 | 125 | return false; |