0
這是我使用的代碼,它似乎在日誌中錯誤在分類頁面Woocommerce簡短描述
add_action('woocommerce_after_shop_loop_item_title', 'lk_woocommerce_product_excerpt', 35, 2);
if (!function_exists('lk_woocommerce_product_excerpt')) {
function lk_woocommerce_product_excerpt()
{
$content_length = 10;
global $post;
$content = $post->brief_description;
$wordarray = explode(' ', $content, $content_length + 1);
if (count($wordarray) > $content_length) :
array_pop($wordarray);
array_push($wordarray, '...');
$content = implode(' ', $wordarray);
$content = force_balance_tags($content);
endif;
echo "<span class='excerpt'><p>$content</p></span>";
}
}
當我註銷正常工作,並檢查頁,第一個產品在每個類別中沒有按不會顯示我添加的簡短描述,雖然它在我登錄時顯示。
代碼有問題嗎?