wooblueprint_exporters
wooblueprint_exporters
Appears in: woocommerce.10.0.4, woocommerce.10.1.2, woocommerce.9.3.1, woocommerce.9.3.3, woocommerce.9.4.2, woocommerce.9.4.3, woocommerce.9.5.1, woocommerce.9.5.2, woocommerce.9.7.0, woocommerce.9.7.1, woocommerce.9.8.1, woocommerce.9.9.3, woocommerce.9.9.5
Hook Type: filter
See hook in action
Displaying hooks found in version: woocommerce.9.9.5apply_filters('wooblueprint_exporters') is found 1 times:
- /packages/blueprint/src/ExportSchema.php line 78
* @param StepExporter[] $exporters Array of step exporters. * * @since 0.0.1 */ $exporters = $this->wp_apply_filters( 'wooblueprint_exporters', array_merge( $this->exporters, $built_in_exporters ) ); // Validate that the exporters are instances of StepExporter. $exporters = array_filter( $exporters, function ( $exporter ) { return $exporter instanceof StepExporter; }