WooCommerce图像下的小描述

时间:2016-09-15 16:01:18

标签: php wordpress function woocommerce hook-woocommerce

我试图在(woo commerce)商店页面的产品图片和标题下添加一个小描述,可能是4到5个子弹点或其他东西。我在这里找到了一些代码来放入function.php,但崩溃了网站。 (也许它太老了什么?)任何帮助都非常感激。

1 个答案:

答案 0 :(得分:0)

将动作woocommerce_after_shop_loop_item_title添加到functions.php,如下所示,产品简短说明将显示在商店页面的标题下。

function add_product_text_under_title() {

    echo '<p>'.the_excerpt().'</p>';

}
add_action( 'woocommerce_after_shop_loop_item_title', 'add_product_text_under_title', 9 );
相关问题