wpseo_ftc_post_update_enable_tracking
Action: 'wpseo_post_update_enable_tracking' - Allows for Hiive event tracking.
Использование
add_action( 'wpseo_ftc_post_update_enable_tracking', 'wp_kama_wpseo_ftc_post_update_enable_tracking_action', 10, 3 );
/**
* Function for `wpseo_ftc_post_update_enable_tracking` action-hook.
*
* @param array $new_value The new value.
* @param array $old_value The old value.
* @param bool $failure Whether the option failed to be stored.
*
* @return void
*/
function wp_kama_wpseo_ftc_post_update_enable_tracking_action( $new_value, $old_value, $failure ){
// action...
}
- $new_value(массив)
- The new value.
- $old_value(массив)
- The old value.
- $failure(true|false)
- Whether the option failed to be stored.
Где вызывается хук
wpseo_ftc_post_update_enable_tracking
yoast/src/actions/configuration/first-time-configuration-action.php 216
\do_action( 'wpseo_ftc_post_update_enable_tracking', $params['tracking'], $option_value, ! $success );