load-(plugin_page) action-hookWP 1.5.0

Fires before a particular screen is loaded.

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.

Usage

add_action( 'load-(plugin_page)', 'wp_kama_load_plugin_page_action' );

/**
 * Function for `load-(plugin_page)` action-hook.
 * 
 * @return void
 */
function wp_kama_load_plugin_page_action(){

	// action...
}

Changelog

Since 1.5.0 Introduced.

Where the hook is called

In file: /wp-admin/admin.php
load-(plugin_page)
wp-admin/admin.php 284
do_action( "load-{$plugin_page}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores

Where the hook is used in WordPress

wp-admin/includes/admin-filters.php 131
add_action( 'load-plugins.php', 'wp_plugin_update_rows', 20 ); // After wp_update_plugins() is called.
wp-admin/includes/admin-filters.php 132
add_action( 'load-themes.php', 'wp_theme_update_rows', 20 ); // After wp_update_themes() is called.
wp-admin/includes/class-custom-background.php 78
add_action( "load-{$page}", array( $this, 'admin_load' ) );
wp-admin/includes/class-custom-background.php 79
add_action( "load-{$page}", array( $this, 'take_action' ), 49 );
wp-admin/includes/class-custom-background.php 80
add_action( "load-{$page}", array( $this, 'handle_upload' ), 49 );
wp-includes/update.php 1156
add_action( 'load-plugins.php', 'wp_update_plugins' );
wp-includes/update.php 1157
add_action( 'load-update.php', 'wp_update_plugins' );
wp-includes/update.php 1158
add_action( 'load-update-core.php', 'wp_update_plugins' );
wp-includes/update.php 1162
add_action( 'load-themes.php', 'wp_update_themes' );
wp-includes/update.php 1163
add_action( 'load-update.php', 'wp_update_themes' );
wp-includes/update.php 1164
add_action( 'load-update-core.php', 'wp_update_themes' );