wpseo_double_clean_titles хук-событиеYoast 1.0

Make sure we can recognize the right action for the double cleaning.

Использование

add_action( 'wpseo_double_clean_titles', 'wp_kama_wpseo_double_clean_titles_action' );

/**
 * Function for `wpseo_double_clean_titles` action-hook.
 * 
 * @return void
 */
function wp_kama_wpseo_double_clean_titles_action(){

	// action...
}

Где вызывается хук

WPSEO_Option_Titles::end_of_init()
wpseo_double_clean_titles
yoast/inc/options/class-wpseo-option-titles.php 204
do_action( 'wpseo_double_clean_titles' );

Где используется хук в Yoast SEO

yoast/inc/options/class-wpseo-option-titles.php 756
add_action( 'wpseo_double_clean_titles', [ $this, 'clean' ] );