ActionScheduler_wpPostStore_PostStatusRegistrar::post_status_running_labels()
Build the args array for the post type definition
Method of the class: ActionScheduler_wpPostStore_PostStatusRegistrar{}
Hooks from the method
Return
Array
.
Usage
// protected - for code of main (parent) or child class $result = $this->post_status_running_labels();
ActionScheduler_wpPostStore_PostStatusRegistrar::post_status_running_labels() ActionScheduler wpPostStore PostStatusRegistrar::post status running labels code WC 9.6.1
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 ); }