mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
https://wpbeaches.com/woocommerce-add-short-or-long-description-to-products-on-shop-page/
10 lines
312 B
Text
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
|
|
}
|