IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
|
| 276 | 276 | // Load must-use plugins. |
| 277 | 277 | foreach ( wp_get_mu_plugins() as $mu_plugin ) { |
| 278 | 278 | include_once( $mu_plugin ); |
| | 279 | |
| | 280 | /** |
| | 281 | * Fires once a single must-use plugin have loaded. |
| | 282 | * |
| | 283 | * @since 5.1.0 |
| | 284 | * |
| | 285 | * @param string $mu_plugin Loaded plugin's basename. |
| | 286 | */ |
| | 287 | do_action( 'mu_plugin_loaded', $mu_plugin ); |
| 279 | 288 | } |
| 280 | 289 | unset( $mu_plugin ); |
| 281 | 290 | |
| … |
… |
|
| 284 | 293 | foreach ( wp_get_active_network_plugins() as $network_plugin ) { |
| 285 | 294 | wp_register_plugin_realpath( $network_plugin ); |
| 286 | 295 | include_once( $network_plugin ); |
| | 296 | |
| | 297 | /** |
| | 298 | * Fires once a single network-activated plugin have loaded. |
| | 299 | * |
| | 300 | * @since 5.1.0 |
| | 301 | * |
| | 302 | * @param string $network_plugin Loaded plugin's basename. |
| | 303 | */ |
| | 304 | do_action( 'network_plugin_loaded', $network_plugin ); |
| 287 | 305 | } |
| 288 | 306 | unset( $network_plugin ); |
| 289 | 307 | } |
| … |
… |
|
| 322 | 340 | foreach ( wp_get_active_and_valid_plugins() as $plugin ) { |
| 323 | 341 | wp_register_plugin_realpath( $plugin ); |
| 324 | 342 | include_once( $plugin ); |
| | 343 | |
| | 344 | /** |
| | 345 | * Fires once a single activated plugin have loaded. |
| | 346 | * |
| | 347 | * @since 5.1.0 |
| | 348 | * |
| | 349 | * @param string $plugin Loaded plugin's basename. |
| | 350 | */ |
| | 351 | do_action( 'plugin_loaded', $plugin ); |
| 325 | 352 | } |
| 326 | 353 | unset( $plugin ); |
| 327 | 354 | |