You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
413 B
19 lines
413 B
<?php
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
get_header();
|
|
|
|
$template_path = 'templates/shop/single-product.php';
|
|
if (file_exists(get_template_directory() . '/' . $template_path)) {
|
|
include_once get_template_directory() . '/' . $template_path;
|
|
} else {
|
|
|
|
while (have_posts()) : the_post();
|
|
wc_get_template_part('content', 'single-product');
|
|
endwhile;
|
|
}
|
|
|
|
get_footer(); |