我对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);
}
我想获得扩展文本字段而不是打开新链接的选项。
我希望你能帮帮我..