簡體   English   中英

Woocommerce商店頁面產品描述

[英]Woocommerce shop page product description

我將以下代碼添加到我的functions.php文件中,以在我的商店頁面上的縮略圖下添加簡短的產品說明。

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 = 5;
global $post;
$content = $post->post_excerpt;
$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>";
}
}

我不希望該文本鏈接到我的標題,並且希望能夠使文本左對齊並更改顏色。 現在,它具有與產品標題相同的CSS。 任何幫助,將不勝感激!

怎么樣:

.excerpt{
text-align:left;
color:#fff;
font-size:10px;
font-family:verdana;
font-weight:normal;
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM