ActionScheduler_wpPostStore_PostStatusRegistrar::post_status_running_labels()protectedWC 1.0

Build the args array for the post type definition

Метод класса: ActionScheduler_wpPostStore_PostStatusRegistrar{}

Хуки из метода

Возвращает

Массив.

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

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->post_status_running_labels();

Код ActionScheduler_wpPostStore_PostStatusRegistrar::post_status_running_labels() WC 8.7.0

protected function post_status_running_labels() {
	$labels = array(
		'label'       => _x( 'In-Progress', 'post', 'woocommerce' ),
		/* translators: %s: count */
		'label_count' => _n_noop( 'In-Progress <span class="count">(%s)</span>', 'In-Progress <span class="count">(%s)</span>', 'woocommerce' ),
	);

	return apply_filters( 'action_scheduler_post_status_running_labels', $labels );
}