我在woocommerce中生成了一个自定义类别页面,产品在该类别下成功显示,但描述不会显示在各个产品上。
请在这方面帮助我。
答案 0 :(得分:1)
只需在自定义模板页面中尝试此操作
<?php echo apply_filters( 'woocommerce_short_description', $post->post_excerpt ) ?>
答案 1 :(得分:0)
使用此行显示产品说明 -
<?php echo apply_filters( 'woocommerce_short_description', $post->post_excerpt ); ?>
或
在 function.php 文件 -
中添加此操作挂钩<?php add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_single_excerpt', 5); ?>