ActionScheduler_wpPostStore_TaxonomyRegistrar::taxonomy_args()protectedWC 1.0

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() code WC 8.7.0

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;
}