1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?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' : 'coming-soon-entire-site';
if ( class_exists( 'Automattic\WooCommerce\Admin\Features\Features', false ) && \Automattic\WooCommerce\Admin\Features\Features::is_enabled( 'coming-soon-newsletter-template' ) ) { $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 ?>"} /-->
|