action_scheduler_taxonomy_args filter-hookWC 1.0

Usage

add_filter( 'action_scheduler_taxonomy_args', 'wp_kama_action_scheduler_taxonomy_args_filter' );

/**
 * Function for `action_scheduler_taxonomy_args` filter-hook.
 * 
 * @param  $args 
 *
 * @return 
 */
function wp_kama_action_scheduler_taxonomy_args_filter( $args ){

	// filter...
	return $args;
}
$args
-

Where the hook is called

ActionScheduler_wpPostStore_TaxonomyRegistrar::taxonomy_args()
action_scheduler_taxonomy_args

Where the hook is used in WooCommerce

Usage not found.