הוספת תיאור קצר של מוצר בעמוד קטגוריה

<?php
/**
* Add the product's short description (excerpt) to the WooCommerce shop/category pages. The description displays after the product's name, but before the product's price.
*/

function woocommerce_after_shop_loop_item_title_short_description() {
global $product;
if ( ! $product->post->post_excerpt ) return;
?>
<?php echo apply_filters( 'woocommerce_short_description', $product->post->post_excerpt ) ?>
<div itemprop="description">
</div>
<?php
}

add_action('woocommerce_after_shop_loop_item_title', 'woocommerce_after_shop_loop_item_title_short_description', 5
);