【发布时间】:2021-10-13 20:39:07
【问题描述】:
多次搜索并没有发现类似的东西! 我的主页上有一些 cmets 作为客户推荐,代码如下。我有两个问题。
1- 我如何从上面的 60 个单词中修剪 cmets。(因为某些评论单词更高!)
2-如何只得到少于60字的cmets?
<?php
$comments = get_comments(array(
'page_id' => 2556,
'status' => 'approve',
));
//Display the list of comments
wp_list_comments(array(
'per_page' => 10,
'avatar_size' => 30,
'reverse_top_level' => true,
), $comments);
?>
【问题讨论】: