Initialize the base WordPress theme files, including core template hierarchy (index, page, single, archive, 404), WooCommerce template overrides, and essential asset directories.
29 lines
839 B
PHP
29 lines
839 B
PHP
<?php
|
|
/**
|
|
* قالب تکی محصول
|
|
*/
|
|
get_header();
|
|
|
|
// نمایش breadcrumb مسیر صفحه
|
|
woocommerce_breadcrumb( array(
|
|
'wrap_before' => '<div class="max-w-7xl mx-auto px-4 md:px-6 pt-6 text-sm text-cream-500 dark:text-dark-muted flex items-center gap-2">',
|
|
'wrap_after' => '</div>',
|
|
'delimiter' => ' <iconify-icon icon="lucide:chevron-left" width="14"></iconify-icon> '
|
|
));
|
|
?>
|
|
|
|
<main class="pb-16 md:pb-24">
|
|
<div class="max-w-7xl mx-auto px-4 md:px-6">
|
|
<?php while ( have_posts() ) : ?>
|
|
<?php the_post(); ?>
|
|
|
|
<?php
|
|
// فراخوانی فایل محتوای محصول (داخل پوشه woocommerce)
|
|
wc_get_template_part( 'content', 'single-product' );
|
|
?>
|
|
|
|
<?php endwhile; ?>
|
|
</div>
|
|
</main>
|
|
|
|
<?php get_footer(); ?>
|