plugins_loaded action-hook . WP 1.5.0
Fires once activated plugins have loaded.
Pluggable functions are also available at this point in the loading order.
Usage
add_action( 'plugins_loaded', 'action_function_name_671' ); function action_function_name_671(){ // action... }
Changelog
Since 1.5.0 | Introduced. |
Where the hook is called
In file: /wp-settings.php
plugins_loaded
wp-settings.php 420
do_action( 'plugins_loaded' );
Where in WP core the hook is used WordPress
wp-settings.php 360
add_action( 'plugins_loaded', 'wp_maybe_load_widgets', 0 );
wp-settings.php 361
add_action( 'plugins_loaded', 'wp_maybe_load_embeds', 0 );
wp-settings.php 479
add_action( 'plugins_loaded', '_wp_customize_include' );
wp-settings.php 547
add_action( 'plugins_loaded', '_wp_add_additional_image_sizes', 0 );