限制字数按字数输入内容

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了限制字数按字数输入内容相关的知识,希望对你有一定的参考价值。

I need this function all too often and figured I'd share it. Limit the_content() by word limit by using built in WordPress functions.
  1. //Example: apply_filters( 'the_content', wp_trim_words( get_the_content(), 15, '…' ) )
  2.  
  3. //Add this function to your functions.php file
  4. function get_news($cat_slug, $limit){
  5.  
  6.  
  7. $my_query = new WP_Query('category_name='.$cat_slug.'&posts_per_page='.$limit);
  8.  
  9. $result = "<ul class='news-feed'>";
  10.  
  11. while ($my_query->have_posts()) : $my_query->the_post();
  12. $result .= '<li class="news-item"><a href="' . get_permalink() . '" target="_blank">' . get_the_title() . '</a><p>';
  13. $result .= apply_filters( 'the_content', wp_trim_words( get_the_content(), 15, '&hellip;' ) ) . ' <a href="' . get_permalink() . '" target="_blank" class="read_more"><strong>read more</strong> &raquo;</a>';
  14. $result .= '</li>';
  15. endwhile;
  16. $result .= '</ul>';
  17. return $result;
  18. }
  19.  
  20. //Usage:
  21. // get company news from the 'news' category with limit of 2 posts
  22. print get_news('news', 2);

以上是关于限制字数按字数输入内容的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript 实现textarea限制输入字数, 输入框字数实时统计更新,输入框实时字数计算移动端bug解决

求一种记事本软件,可以显示字数,但是又没有字数限制的。

textarea中输入字数的限制

vantui输入框字数限制

WordPress对文章字数有限制吗

Android字数限制的EditText实现方案研究