31 lines
704 B
PHP
31 lines
704 B
PHP
<?php
|
|
/**
|
|
* Checkout 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-checkout-page',
|
|
'header_action_url' => function_exists( 'wc_get_cart_url' ) ? wc_get_cart_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' );
|