Add Short Description to Products on Archive Pages

// WooCommerce, Add Short Description to Products on Shop Page
add_action( 'woocommerce_after_shop_loop_item_title', 'wc_add_short_description' );

function wc_add_short_description() {
	global $product;

	?>
        <div class="short-desc" itemprop="description">
            <?php echo apply_filters( 'woocommerce_short_description', $product->post-> post_excerpt ) ?>
        </div>
	<?php
}
Scroll to Top