网站地图    收藏   

主页 > 后端 > wordpress教程 >

简单分析一下如何调取WordPress的文章摘要 - Word

来源:自学PHP网    时间:2014-11-28 23:42 作者: 阅读:

[导读] 该标签显示当前文章的摘要,摘要之后带有[ ]符号,如果发布文章时没有提供摘要(在文章编辑界面下方的摘要字段中填写摘要),WordPress会自动截取文章的前55个单词作为摘要,这个的摘要长度...

简单分析一下如何调取WordPress的文章摘要

the_excerpt()标签

该标签显示当前文章的摘要,摘要之后带有[...]符号,如果发布文章时没有提供摘要(在文章编辑界面下方的摘要字段中填写摘要),WordPress会自动截取文章的前55个单词作为摘要,这个的摘要长度可以自由更改,但是不是很方便,还需要使用过滤器进行设置,如果多个摘要长度不同挺麻烦的,具体可以参考WordPress文档中的the_excerpt()标签。

the_content()标签

若文章使用快速标签 来截取摘要,the_content()标签将只在非单篇文章或非固定链接文章上显示 前的摘要部分,the_content()标签可包含一个规定 内容和样式的参数,该参数会生成“继续阅读全文”的链接。

如果没有设置,则会默认显示全文,有点吓人,不是很实用。

真正符合中国人的使用方式:

  1. <?php echo mb_strimwidth(strip_tags(apply_filters('the_content'$post->post_content)), 0, 150, '...'); ?> 

mb_strimwidth(),这篇文章有这个函数的介绍的,这样我们就可以自由的调取摘要,并且不受the_content() 的干扰,并且摘要中不会出现乱码.

完全的使用案例:

  1. <ul class="excerpt"
  2. <?php while (have_posts()) : the_post();?> 
  3.                         <li> 
  4.                                 <a href="<?php echo get_permalink(); ?>" class="pic"><?php dm_the_thumbnail(); ?></a> 
  5.                                 <h2><a href="<?php the_permalink() ?>" title="<?php mb_strimwidth(the_title(),0,1,'...'); ?> - <?php bloginfo('name'); ?>"><?php mb_strimwidth(the_title(),0,1,'...'); ?></a></h2> 
  6.                                 <div class="info"
  7.                                         <span class="time"><?php the_time('m-d');?></span> 
  8.                                         <a class="comm" href="<?php comments_link(); ?>" title="查看 <?php the_title(); ?> 的评论"><?php comments_number('0''1''%'); ?>人评论</a> 
  9.                                         <span class="view"><?php if(function_exists('the_views')) the_views(); ?>次浏览</span> 
  10.                                 </div> 
  11.                                 <div class="note"><?php echo mb_strimwidth(strip_tags(apply_filters('the_content'$post->post_content)), 0, 150, '...'); ?></div> 
  12.                         </li> 
  13.                 <?php endwhile;  ?> 
  14.                 </ul> 

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论