在标题和价格行之间添加产品简短描述

时间:2016-10-05 18:18:31

标签: php html wordpress woocommerce product

如何在标题之后和价格之前在此代码中添加简短描述:

$output .= '<div class="desc">';
                            $output .= '<h4><a href="'. get_the_permalink() .'">'. get_the_title() .'</a></h4>';
if ( $price_html = $product->get_price_html() ) $output .= '<span class="price">'. $price_html .'</span>';
                        $output .= '</div>';

感谢。

1 个答案:

答案 0 :(得分:2)

您应该使用专用的WordPress get_the_excerpt() 功能:

$output .= '<div class="desc">
    <h4><a href="'. get_the_permalink() .'">'. get_the_title() .'</a></h4>
    <p>'. get_the_excerpt() .'</p>';
if ( $price_html = $product->get_price_html() ) $output .= '<span class="price">'. $price_html .'</span>';
                        $output .= '</div>';

                    $output .= '</div>';

这应该有效