Files
dostavka_vodi/wp-content/themes/twentytwentyfour/page-shop.php
Anton.AE 3e42863ef5 Task_12281 (#1)
Co-authored-by: User A0264400 <a0264400@jarl.from.sh>
Reviewed-on: #1
Co-authored-by: Anton.AE <ab.an.ev@yandex.ru>
Co-committed-by: Anton.AE <ab.an.ev@yandex.ru>
2026-07-05 16:07:04 +03:00

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' );