default.php
17 lines
| 1 | <?php |
| 2 | defined('ABSPATH') || exit; |
| 3 | $post_type = get_post_type(); |
| 4 | |
| 5 | if($post_type === \ShopEngine\Core\Template_Cpt::TYPE) { |
| 6 | |
| 7 | global $product; |
| 8 | |
| 9 | $product = \ShopEngine\Widgets\Products::instance()->get_product($post_type); |
| 10 | } |
| 11 | |
| 12 | ?> |
| 13 | |
| 14 | <div class="shopengine-product-meta"> |
| 15 | <?php woocommerce_template_single_meta(); ?> |
| 16 | </div> |
| 17 |