1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php /** * Single product short description * * @author WooThemes * @package WooCommerce/Templates * @version 1.6.4 */
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
global $post;
if ( ! $post->post_excerpt ) return; ?> <div itemprop="description" class="short-description"> <?php echo apply_filters( 'woocommerce_short_description', $post->post_excerpt ) ?> </div>
|