在WordPress中显示具有自定义摘录长度和自定义阅读更多文本的文章
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在WordPress中显示具有自定义摘录长度和自定义阅读更多文本的文章相关的知识,希望对你有一定的参考价值。
<?php //showing welcome post (post id =1) // retrieve one post with an ID of 5 query_posts( 'p=1' ); function new_excerpt_length($length) { return 28; } add_filter('excerpt_length', 'new_excerpt_length'); function new_excerpt_more($more) { global $post; return '<a href="'. get_permalink($post->ID) . '"> <br />read more....</a>'; } add_filter('excerpt_more', 'new_excerpt_more'); // set $more to 0 in order to only get the first part of the post global $more; $more = 0; // the Loop while (have_posts()) : the_post(); the_excerpt(); endwhile; ?>
以上是关于在WordPress中显示具有自定义摘录长度和自定义阅读更多文本的文章的主要内容,如果未能解决你的问题,请参考以下文章