wpseo_ftc_post_update_site_representation
Action: 'wpseo_post_update_site_representation' - Allows for Hiive event tracking.
Использование
add_action( 'wpseo_ftc_post_update_site_representation', 'wp_kama_wpseo_ftc_post_update_site_representation_action', 10, 3 ); /** * Function for `wpseo_ftc_post_update_site_representation` action-hook. * * @param array $params The new values of the options. * @param array $old_values The old values of the options. * @param array $failures The options that failed to be saved. * * @return void */ function wp_kama_wpseo_ftc_post_update_site_representation_action( $params, $old_values, $failures ){ // action... }
- $params(массив)
- The new values of the options.
- $old_values(массив)
- The old values of the options.
- $failures(массив)
- The options that failed to be saved.
Где вызывается хук
wpseo_ftc_post_update_site_representation
yoast/src/actions/configuration/first-time-configuration-action.php 87
\do_action( 'wpseo_ftc_post_update_site_representation', $params, $old_values, $failures );