load-importer-mt action-hookWP 3.5.0

Fires before an importer screen is loaded.

This is one of the variants of the dynamic hook load-importer-(importer)

Usage

add_action( 'load-importer-mt', 'wp_kama_load_importer_mt_action' );

/**
 * Function for `load-importer-mt` action-hook.
 * 
 * @return void
 */
function wp_kama_load_importer_mt_action(){

	// action...
}

Changelog

Since 3.5.0 Introduced.

Where the hook is called

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

Where the hook is used in WordPress

Usage not found.