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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在WordPress中显示具有自定义摘录长度和自定义阅读更多文本的文章相关的知识,希望对你有一定的参考价值。

  1. <?php
  2. //showing welcome post (post id =1)
  3. // retrieve one post with an ID of 5
  4. query_posts( 'p=1' );
  5. function new_excerpt_length($length) {
  6. return 28;
  7. }
  8. add_filter('excerpt_length', 'new_excerpt_length');
  9. function new_excerpt_more($more) {
  10. global $post;
  11. return '<a href="'. get_permalink($post->ID) . '"> <br />read more....</a>';
  12. }
  13. add_filter('excerpt_more', 'new_excerpt_more');
  14.  
  15. // set $more to 0 in order to only get the first part of the post
  16. global $more;
  17. $more = 0;
  18.  
  19. // the Loop
  20. while (have_posts()) : the_post();
  21. the_excerpt();
  22. endwhile;
  23. ?>

以上是关于在WordPress中显示具有自定义摘录长度和自定义阅读更多文本的文章的主要内容,如果未能解决你的问题,请参考以下文章

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

PHP 自定义wordpress摘录长度

自定义wordpress摘录长度

WordPress中的自定义博客存档页面

Wordpress 自定义演示侧边栏未出现在帖子上

Wordpress摘录自定义字数限制