Changeset 44344
- Timestamp:
- 12/20/2018 12:51:30 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-settings.php
r44150 r44344 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 has 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 ); … … 285 294 wp_register_plugin_realpath( $network_plugin ); 286 295 include_once( $network_plugin ); 296 297 /** 298 * Fires once a single network-activated plugin has 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 ); … … 323 341 wp_register_plugin_realpath( $plugin ); 324 342 include_once( $plugin ); 343 344 /** 345 * Fires once a single activated plugin has 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 );
Note: See TracChangeset
for help on using the changeset viewer.