doing_it_wrong_run action-hookWC 1.0

This is a WordPress - doing_it_wrong_run hook. The plugin just uses it.

Fires when the given function is being used incorrectly.

Usage

add_action( 'doing_it_wrong_run', 'wp_kama_doing_it_wrong_run_action', 10, 3 );

/**
 * Function for `doing_it_wrong_run` action-hook.
 * 
 * @param string $function_name The function that was called.
 * @param string $message       A message explaining what has been done incorrectly.
 * @param string $version       The version of WordPress where the message was added.
 *
 * @return void
 */
function wp_kama_doing_it_wrong_run_action( $function_name, $message, $version ){

	// action...
}
$function_name(string)
The function that was called.
$message(string)
A message explaining what has been done incorrectly.
$version(string)
The version of WordPress where the message was added.

Where the hook is called

wc_doing_it_wrong()
doing_it_wrong_run
woocommerce/includes/wc-deprecated-functions.php 117
do_action( 'doing_it_wrong_run', $function, $message, $version );

Where the hook is used in WooCommerce

Usage not found.