14 lines
277 B
PHP
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');
|