Skip to content

Commit 27284ab

Browse files
committed
Delay loading plugin until after_setup_theme
1 parent 7b3ee06 commit 27284ab

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

plugins/speculation-rules/load.php

+2-9
Original file line numberDiff line numberDiff line change
@@ -34,21 +34,14 @@ static function ( string $global_var_name, string $version, Closure $load ) {
3434
if (
3535
isset( $GLOBALS[ $global_var_name ]['load'] )
3636
&&
37-
! isset( $GLOBALS[ $global_var_name ]['loaded'] )
38-
&&
3937
$GLOBALS[ $global_var_name ]['load'] instanceof Closure
4038
) {
4139
call_user_func( $GLOBALS[ $global_var_name ]['load'] );
42-
$GLOBALS[ $global_var_name ]['loaded'] = true;
40+
unset( $GLOBALS[ $global_var_name ] );
4341
}
4442
};
4543

46-
// Handle either where the plugin is installed as a regular plugin or is embedded in another plugin or in a theme.
47-
if ( ! did_action( 'plugins_loaded' ) ) {
48-
add_action( 'plugins_loaded', $bootstrap, 0 );
49-
}
50-
51-
// Handle case where plugin is embedded in a theme.
44+
// Wait until after the plugins have loaded and the theme has loaded.
5245
add_action( 'after_setup_theme', $bootstrap, 0 );
5346
}
5447

0 commit comments

Comments
 (0)