Files
mccans-theme/single-product.php
2025-05-20 14:15:03 -07:00

14 lines
277 B
PHP

<?php
get_header('shop');
do_action('woocommerce_before_main_content');
while (have_posts()):
the_post();
wc_get_template_part('content', 'single-product');
endwhile;
do_action('woocommerce_after_main_content');
do_action('woocommerce_sidebar');
get_footer('shop');