wooblueprint_exporters
wooblueprint_exporters
Appears in: woocommerce.9.3.1
Hook Type: filter
See hook in action
Displaying hooks found in version: woocommerce.9.3.1apply_filters('wooblueprint_exporters') is found 1 times:
- /vendor/woocommerce/blueprint/src/ExportSchema.php line 61
* @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 ) ); // Filter out any exporters that are not in the list of steps to export. if ( count( $steps ) ) { foreach ( $exporters as $key => $exporter ) { $name = $exporter->get_step_name(); $alias = $exporter instanceof HasAlias ? $exporter->get_alias() : $name;