action_scheduler_post_status_running_labels хук-фильтрWC 1.0

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

add_filter( 'action_scheduler_post_status_running_labels', 'wp_kama_action_scheduler_post_status_running_labels_filter' );

/**
 * Function for `action_scheduler_post_status_running_labels` filter-hook.
 * 
 * @param  $labels 
 *
 * @return 
 */
function wp_kama_action_scheduler_post_status_running_labels_filter( $labels ){

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

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

ActionScheduler_wpPostStore_PostStatusRegistrar::post_status_running_labels()
action_scheduler_post_status_running_labels
woocommerce/packages/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostStatusRegistrar.php 56
return apply_filters( 'action_scheduler_post_status_running_labels', $labels );

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

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