mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
10 lines
333 B
Text
10 lines
333 B
Text
function woocommerce_after_shop_loop_item_title_short_description() {
|
|
global $product;
|
|
|
|
if ( !$product->post->post_excerpt ) return;
|
|
?>
|
|
<div itemprop="description">
|
|
<?php echo wp_trim_words( apply_filters( 'woocommerce_short_description', $product->post->post_excerpt ), 30, '...' );?>
|
|
</div>
|
|
<?php
|
|
}
|