摘录或内容字数限制

Posted

tags:

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

use in template
  1. function excerpt($limit) {
  2. $excerpt = explode(' ', get_the_excerpt(), $limit);
  3. if (count($excerpt)>=$limit) {
  4. array_pop($excerpt);
  5. $excerpt = implode(" ",$excerpt).'...';
  6. } else {
  7. $excerpt = implode(" ",$excerpt);
  8. }
  9. $excerpt = preg_replace('`[[^]]*]`','',$excerpt);
  10. return $excerpt;
  11. }
  12.  
  13. function content($limit) {
  14. $content = explode(' ', get_the_content(), $limit);
  15. if (count($content)>=$limit) {
  16. array_pop($content);
  17. $content = implode(" ",$content).'...';
  18. } else {
  19. $content = implode(" ",$content);
  20. }
  21. $content = preg_replace('/[.+]/','', $content);
  22. $content = apply_filters('the_content', $content);
  23. $content = str_replace(']]>', ']]>', $content);
  24. return $content;
  25. }

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

Wordpress摘录自定义字数限制

如何解决网页内容无法复制或复制字数有限制的问题?

WordPress对文章字数有限制吗

限制字数按字数输入内容

js表格限制字数表超过的内容隐藏

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