wooblueprint_importers filter-hookWC 1.0

Usage

add_filter( 'wooblueprint_importers', 'wp_kama_wooblueprint_importers_filter' );

/**
 * Function for `wooblueprint_importers` filter-hook.
 * 
 * @param  $condition 
 *
 * @return 
 */
function wp_kama_wooblueprint_importers_filter( $condition ){

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

Where the hook is called

ImportStep::__construct()
wooblueprint_importers
woocommerce/packages/blueprint/src/ImportStep.php 67
$this->importers         = $this->wp_apply_filters( 'wooblueprint_importers', ( ( new BuiltInStepProcessors() )->get_all() ) );

Where the hook is used in WooCommerce

Usage not found.