Wordpress摘录自定义字数限制

Posted

tags:

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

  1. <?php
  2.  
  3. //this part goes to functions.php
  4.  
  5. function string_limit_words($string, $word_limit)
  6. {
  7. $words = explode(' ', $string, ($word_limit + 1));
  8. if(count($words) > $word_limit) {
  9. array_pop($words);
  10. //add a ... at last article when more than limit word count
  11. echo implode(' ', $words)."..."; } else {
  12. //otherwise
  13. echo implode(' ', $words); }
  14. }
  15.  
  16. //this part goes to template
  17.  
  18. $excerpt = get_the_excerpt();
  19. echo string_limit_words($excerpt,25);
  20.  
  21. ?>

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

摘录或内容字数限制

PHP 自定义wordpress摘录长度

自定义wordpress摘录长度

php wordpress自定义中的多个摘录长度

PHP 显示具有自定义摘录长度的帖子和自定义在WordPress中阅读更多文本

在WordPress中显示具有自定义摘录长度和自定义阅读更多文本的文章