26 lines
607 B
PHP
26 lines
607 B
PHP
<?php
|
|
/**
|
|
* Shop template with shared test1 header/footer.
|
|
*
|
|
* @package Twenty_Twenty_Four
|
|
*/
|
|
|
|
$test1_header_args = array(
|
|
'body_class' => 'test1-shared-shell test1-shared-shop-page',
|
|
'header_action_url' => function_exists( 'wc_get_cart_url' ) ? wc_get_cart_url() : home_url( '/cart/' ),
|
|
'header_action_label' => __( 'Корзина', 'twentytwentyfour' ),
|
|
'header_mode' => 'link',
|
|
);
|
|
|
|
get_header( 'test1', $test1_header_args );
|
|
?>
|
|
|
|
<main class="site-main" role="main">
|
|
<div class="container">
|
|
<?php woocommerce_content(); ?>
|
|
</div>
|
|
</main>
|
|
|
|
<?php
|
|
get_footer( 'test1' );
|