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

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

add_action( 'wpseo_hit_sitemap_index', 'wp_kama_wpseo_hit_sitemap_index_action' );

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

	// action...
}

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

WPSEO_Sitemaps_Admin::status_transition_bulk_finished()
wpseo_hit_sitemap_index
yoast/inc/sitemaps/class-sitemaps-admin.php 122
do_action( 'wpseo_hit_sitemap_index' );

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

yoast/inc/sitemaps/class-sitemaps.php 103
add_action( 'wpseo_hit_sitemap_index', [ $this, 'hit_sitemap_index' ] );