load-{$plugin_page} WordPress Action Hook
The load-{$plugin_page} hook is used to load a plugin's page. This hook is called when a plugin's page is loaded.
do_action( "load-{$plugin_page}" ) #
Fires before a particular screen is loaded.
Description
The load-* hook fires in a number of contexts. This hook is for plugin screens where the file to load is directly included, rather than the use of a function.
The dynamic portion of the hook name, $plugin_page
, refers to the plugin basename.
See also
Source
File: wp-admin/admin.php
Changelog
Version | Description |
---|---|
1.5.0 | Introduced. |