2015-05-14 72 views

回答

0

您可以使用the_excerpt獲取簡短描述

$loop = new WP_Query(array('post_type' => 'product','post_status' => 'publish', 'posts_per_page' => '-1')); 

while ($loop->have_posts()) : $loop->the_post(); 
    the_excerpt(); 
endwhile; 

所以它會給你簡要說明如果產品有一個短description.If沒有,那麼它會顯示您發佈的內容。

相關問題