(identifier)_time_exceeded хук-фильтрWC 1.0

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

add_filter( '(identifier)_time_exceeded', 'wp_kama_identifier_time_exceeded_filter' );

/**
 * Function for `(identifier)_time_exceeded` filter-hook.
 * 
 * @param  $return 
 *
 * @return 
 */
function wp_kama_identifier_time_exceeded_filter( $return ){

	// filter...
	return $return;
}
$return
-

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

WP_Background_Process::time_exceeded()
(identifier)_time_exceeded
woocommerce/includes/libraries/wp-background-process.php 392
return apply_filters( $this->identifier . '_time_exceeded', $return );

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

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