wooblueprint_importers хук-фильтрWC 1.0

Использование

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
-

Где вызывается хук

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

Где используется хук в WooCommerce

Использование не найдено.