Code-Snippets-Functions/Execute a function on a child site/WooCommerce/add-short-description-to-display-on-shop-page.txt

10 lines
312 B
Text

add_action( 'woocommerce_after_shop_loop_item_title', 'wc_add_short_description' );
function wc_add_short_description() {
global $product;
?>
<div itemprop="description">
<?php echo apply_filters( 'woocommerce_short_description', $product->post-> post_excerpt ) ?>
</div>
<?php
}