deprecated_argument_run action-hookWC 3.0.0

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

Wrapper for deprecated arguments so we can apply some extra logic.

Usage

add_action( 'deprecated_argument_run', 'wp_kama_deprecated_argument_run_action', 10, 3 );

/**
 * Function for `deprecated_argument_run` action-hook.
 * 
 * @param string $function_name The function that was called.
 * @param string $message       A message regarding the change.
 * @param string $version       The version of WordPress that deprecated the argument used.
 *
 * @return void
 */
function wp_kama_deprecated_argument_run_action( $function_name, $message, $version ){

	// action...
}
$function_name(string)
The function that was called.
$message(string)
A message regarding the change.
$version(string)
The version of WordPress that deprecated the argument used.

Changelog

Since 3.0.0 Introduced.

Where the hook is called

wc_deprecated_argument()
deprecated_argument_run
woocommerce/includes/wc-deprecated-functions.php 135
do_action( 'deprecated_argument_run', $argument, $message, $version );

Where the hook is used in WooCommerce

Usage not found.