deprecated_argument_run
Это хук WordPress - deprecated_argument_run. Плагин его просто использует.
Wrapper for deprecated arguments so we can apply some extra logic.
Использование
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(строка)
- The function that was called.
- $message(строка)
- A message regarding the change.
- $version(строка)
- The version of WordPress that deprecated the argument used.
Список изменений
С версии 3.0.0 | Введена. |
Где вызывается хук
deprecated_argument_run
woocommerce/includes/wc-deprecated-functions.php 135
do_action( 'deprecated_argument_run', $argument, $message, $version );