WooCommerce-将简短描述更改为摘要描述

时间:2018-08-30 09:10:07

标签: php wordpress woocommerce

我想使用woocommerce_single_product_summary而不是woocommerce_short_description。

该怎么做?如果我仅更改“ woocommerce_short_description”,它仍显示简短说明。

谢谢

<?php break;
   case 'description': ?>
      <div class="wcpc-compare-row">
         <div class="wcpc-compare-cell" data-compare="<?php echo $k; ?>">
            <div class="wcpc-compare-description">
               <?php $post = get_post($product->get_id()); echo apply_filters( 'woocommerce_short_description', $post->post_excerpt ); ?>
            </div>
         </div>
       </div>

1 个答案:

答案 0 :(得分:0)

如果要获取产品描述而不是简短描述,则需要使用以下内容:

$post->post_content;

代替:

$post->post_excerpt;