Woocommerce商店页面产品描述

时间:2014-04-13 23:57:45

标签: php css wordpress woocommerce

我将以下代码添加到我的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。任何帮助将不胜感激!

1 个答案:

答案 0 :(得分:0)

如下:

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