(identifier)_time_exceeded filter-hookWC 1.0

Usage

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
-

Where the hook is called

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

Where the hook is used in WooCommerce

Usage not found.