plugins_loaded WordPress Action Hook

The plugins_loaded hook is called once all the plugins have been loaded. This hook can be used to load plugin specific code that is needed to run the plugin.

do_action( 'plugins_loaded' ) #

Fires once activated plugins have loaded.


Description

Pluggable functions are also available at this point in the loading order.


Top ↑

More Information

The hook is generally used for immediate filter setup, or plugin overrides.

The plugins_loaded action hook fires early, and precedes the setup_theme, after_setup_theme, init and wp_loaded action hooks.


Top ↑

Source

File: wp-settings.php

View on Trac


Top ↑

Changelog

Changelog
VersionDescription
1.5.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.