Initialize the base WordPress theme files, including core template hierarchy (index, page, single, archive, 404), WooCommerce template overrides, and essential asset directories.
20 lines
387 B
PHP
20 lines
387 B
PHP
<?php
|
|
/**
|
|
* قالب برگههای ساده (سبد خرید، تسویه، و...)
|
|
*/
|
|
get_header();
|
|
?>
|
|
|
|
<main id="primary" class="pt-16 md:pt-[104px]">
|
|
<div class="max-w-7xl mx-auto px-4 md:px-6 py-8 md:py-12">
|
|
<?php
|
|
while ( have_posts() ) :
|
|
the_post();
|
|
the_content();
|
|
endwhile;
|
|
?>
|
|
</div>
|
|
</main>
|
|
|
|
<?php
|
|
get_footer();
|