如何在标题之后和价格之前在此代码中添加简短描述:
$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>';
感谢。
答案 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>';
这应该有效