wooblueprint_export_landingpage
Export the schema steps.
Usage
add_filter( 'wooblueprint_export_landingpage', 'wp_kama_wooblueprint_export_landingpage_filter' );
/**
* Function for `wooblueprint_export_landingpage` filter-hook.
*
* @param string[] $steps Array of step names to export, optional.
*
* @return string[]
*/
function wp_kama_wooblueprint_export_landingpage_filter( $steps ){
// filter...
return $steps;
}
- $steps(string[])
- Array of step names to export, optional.
Where the hook is called
wooblueprint_export_landingpage
woocommerce/packages/blueprint/src/ExportSchema.php 46
$loading_page_path = $this->wp_apply_filters( 'wooblueprint_export_landingpage', '/' );