ActionScheduler_wpPostStore_TaxonomyRegistrar::taxonomy_args
Get taxonomy arguments.
Method of the class: ActionScheduler_wpPostStore_TaxonomyRegistrar{}
Hooks from the method
Returns
null. Nothing (null).
Usage
// protected - for code of main (parent) or child class $result = $this->taxonomy_args();
ActionScheduler_wpPostStore_TaxonomyRegistrar::taxonomy_args() ActionScheduler wpPostStore TaxonomyRegistrar::taxonomy args code WC 10.6.2
protected function taxonomy_args() {
$args = array(
'label' => __( 'Action Group', 'woocommerce' ),
'public' => false,
'hierarchical' => false,
'show_admin_column' => true,
'query_var' => false,
'rewrite' => false,
);
$args = apply_filters( 'action_scheduler_taxonomy_args', $args );
return $args;
}