ActionScheduler_wpPostStore_TaxonomyRegistrar::taxonomy_args()
Method of the class: ActionScheduler_wpPostStore_TaxonomyRegistrar{}
Hooks from the method
Return
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 9.2.3
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; }