motayeb/single-product.php
Kazem Alghasi f408faac54 build(theme): scaffold initial theme directory structure and assets
Initialize the base WordPress theme files, including core template
hierarchy (index, page, single, archive, 404), WooCommerce template
overrides, and essential asset directories.
2026-08-15 22:11:08 +03:30

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(); ?>