1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php /** * Title: Coming Soon * Slug: woocommerce/coming-soon * Categories: WooCommerce * Inserter: false * Feature Flag: launch-your-store * * @package WooCommerce\Blocks */
$store_pages_only = 'yes' === get_option( 'woocommerce_store_pages_only', 'no' ); $default_pattern = $store_pages_only ? 'coming-soon-store-only' : 'page-coming-soon-default';
?>
<!-- wp:pattern {"slug":"woocommerce/<?php echo $default_pattern; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>"} /-->
|