大家好,有没有一种方法可以限制 Wordpress 中 comment_content 的长度。我正在创建页面最后 5 条评论的视图,但想限制长度。
这是我到目前为止的代码:
<?php $args = array ( 'post_id' => '225', 'number' => '5', 'orderby' => 'date', 'order' => 'DESC', 'comment_approved' => '1' );
$comments = get_comments($args);
foreach($comments as $comment) :
echo('<div class="sidebarNewsTitle">'. $comment->comment_author . ' said : "' . strip_tags($comment->comment_content). '..."</div>');
endforeach;
?>