大家好我有一種方法可以限制Wordpress中comment_content的長度。我正在創建一個頁面的最後5條評論的視圖,但想限制長度。設置Wordpress comment_content長度
這是我到目前爲止的代碼:
<?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;
?>