Files
2026-04-18 20:18:31 +03:00

31 lines
710 B
PHP

<?php
/**
* Cart template with shared test1 header/footer and default Woo content.
*
* @package Twenty_Twenty_Four
*/
$test1_header_args = array(
'body_class' => 'test1-shared-shell test1-shared-cart-page',
'header_action_url' => function_exists( 'wc_get_checkout_url' ) ? wc_get_checkout_url() : '',
'header_action_label' => __( 'Оформление', 'twentytwentyfour' ),
'header_mode' => 'link',
);
get_header( 'test1', $test1_header_args );
?>
<main class="site-main" role="main">
<div class="container checkout-content-container">
<?php
while ( have_posts() ) :
the_post();
the_content();
endwhile;
?>
</div>
</main>
<?php
get_footer( 'test1' );