diff --git a/src/wp-settings.php b/src/wp-settings.php
index 91729821d4..e48208beb6 100644
|
a
|
b
|
foreach ( wp_get_mu_plugins() as $mu_plugin ) { |
| 288 | 288 | * |
| 289 | 289 | * @since 5.1.0 |
| 290 | 290 | * |
| 291 | | * @param string $mu_plugin Loaded plugin's basename. |
| | 291 | * @param string $mu_plugin Full path to the plugin's main file. |
| 292 | 292 | */ |
| 293 | 293 | do_action( 'mu_plugin_loaded', $mu_plugin ); |
| 294 | 294 | } |
| … |
… |
if ( is_multisite() ) { |
| 305 | 305 | * |
| 306 | 306 | * @since 5.1.0 |
| 307 | 307 | * |
| 308 | | * @param string $network_plugin Loaded plugin's basename. |
| | 308 | * @param string $network_plugin Full path to the plugin's main file. |
| 309 | 309 | */ |
| 310 | 310 | do_action( 'network_plugin_loaded', $network_plugin ); |
| 311 | 311 | } |
| … |
… |
foreach ( wp_get_active_and_valid_plugins() as $plugin ) { |
| 352 | 352 | * |
| 353 | 353 | * @since 5.1.0 |
| 354 | 354 | * |
| 355 | | * @param string $plugin Loaded plugin's basename. |
| | 355 | * @param string $plugin Full path to the plugin's main file. |
| 356 | 356 | */ |
| 357 | 357 | do_action( 'plugin_loaded', $plugin ); |
| 358 | 358 | } |