wordpress自定义字段添加阅读更多链接

时间:2014-05-26 20:52:15

标签: php wordpress

我对get_post_meta的查询有问题。我试图修剪自定义字段文本的长度,并在文本的末尾添加更多的读取。我使用此代码

$trim_length = 20; 
$value_more = '(...)';
$custom_field = 'description';
$description = get_post_meta($post ->ID, 'description', true);
if ($description) {
echo wp_trim_words($description, $trim_length, $value_more);
}

我想获得扩展文本字段而不是打开新链接的选项。

我希望你能帮帮我..

0 个答案:

没有答案