自定义wordpress摘录长度

Posted

tags:

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

Change the excerpt value in functions.php
  1. //First add the filters functions
  2.  
  3. function wpe_excerptlength_teaser($length) {
  4. return 45;
  5. }
  6. function wpe_excerptlength_index($length) {
  7. return 30;
  8. }
  9. function wpe_excerptmore($more) {
  10. return '...';
  11. }
  12.  
  13. // Then the function
  14.  
  15. function wpe_excerpt($length_callback='', $more_callback='') {
  16. global $post;
  17. if(function_exists($length_callback)){
  18. add_filter('excerpt_length', $length_callback);
  19. }
  20. if(function_exists($more_callback)){
  21. add_filter('excerpt_more', $more_callback);
  22. }
  23. $output = get_the_excerpt();
  24. $output = apply_filters('wptexturize', $output);
  25. $output = apply_filters('convert_chars', $output);
  26. $output = '<p>'.$output.'</p>';
  27. echo $output;
  28. }
  29.  
  30. //The code for the template
  31.  
  32. <?php wpe_excerpt('wpe_excerptlength_index', 'wpe_excerptmore'); ?>
  33. // the other one
  34. <?php wpe_excerpt('wpe_excerptlength_teaser', 'wpe_excerptmore'); ?>

以上是关于自定义wordpress摘录长度的主要内容,如果未能解决你的问题,请参考以下文章

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

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

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

Wordpress摘录自定义字数限制

wordpress中的多个摘录长度

php 自定义摘录长度