Many searches and found nothing similar!
I get Some comments on my home page as customer testimonials with code below. and I have two questions.
1- how can I trim comments from for example 60 words above.(cause some of the comment words are higher!)
2-how to get just comments less than 60 words?
<?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);
?>
2
Answers
I found answer for my question NO.1
I will answer if I find any solution of NO.2 but If anyone can answer, it would be amazing!