1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php /** * Single Product title * * @author WooThemes * @package WooCommerce/Templates * @version 1.6.4 */
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
?> <h1 itemprop="name" class="product_title entry-title"><?php the_title(); ?></h1>
|