ActionScheduler_wpPostStore_TaxonomyRegistrar::taxonomy_argsprotectedWC 1.0

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

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