wordrpess the_excerpt()函数截取字符无效
发布:smiling 来源: PHP粉丝网 添加日期:2014-06-21 13:49:03 浏览: 评论:0
在一次开发中,我突然发现,the_excerpt函数无效了,不能显示文章的摘要,我尝试了多种可能的根源,仍然不解,为了不用query_posts就没有问题,用query_posts之后就无效,为了解决这个问题,我翻阅了the_excerpt的源码.具体代码如下:
- /**
- * Display the post excerpt.
- *
- * @since 0.71
- * @uses apply_filters() Calls 'the_excerpt' hook on post excerpt.
- */
- function the_excerpt() {
- echo apply_filters('the_excerpt', get_the_excerpt());
- }
- /**
- * Retrieve the post excerpt.
- *
- * @since 0.71
- *
- * @param mixed $deprecated Not used.
- * @return string
- */
- function get_the_excerpt( $deprecated = '' ) {
- if ( !emptyempty( $deprecated ) )
- _deprecated_argument( __FUNCTION__, '2.3' );
- $post = get_post();
- if ( post_password_required() ) {
- return __( 'There is no excerpt because this is a protected post.' );
- }
- return apply_filters( 'get_the_excerpt', $post->post_excerpt );
- }
如果你仔细研究过,就会发现get_the_excerpt和the_excpert都是以抓取文章在数据库中的post_excerpt字段来实现的,而当这个字段,也就是在后台没有填写摘要时,为空,则会执行filter来调整和控制输出的长度与内容.
如果你在开发中发现,怎么都不能让the_excerpt显示出原本的形式,你打算自己通过字符串截取等方法来代替这个函数的时候,不妨试试下面这段代码:
- if(has_excerpt())the_excerpt();else{
- $length = apply_filters('excerpt_length',20);
- echo apply_filters('the_excerpt',wp_trim_words($post->post_content,$length));
- }
看上去极其简单的几行代码,却包含了很多我们以往没有接触过的知识,首先,apply_filters的运用很少有人做到娴熟,例如我们希望让文章按照WordPress的输出格式输出时,我们可以使用:
echo apply_filters('the_content','你的HTML代码')
来代替,这一招几乎被90%的开发者忽略,甚至很多人根本不知道这种用法.
其次,wp_trim_words是最长被忽视的函数,我们老是希望截取一段特定字符串长度的文字,结果根本不知道WordPress早就准备好了这样的函数出来.
Tags: the_excerpt 截取字符无效
相关文章
- ·WordPress the_excerpt()函数文章摘要字数并加上链接(2014-06-21)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)