当前位置:首页 > CMS教程 > WordPress > 列表

WordPress获取文章内容摘要程序代码

发布:smiling 来源: PHP粉丝网  添加日期:2014-03-18 11:00:35 浏览: 评论:0 

本文章来给大家介绍WordPress获取文章内容摘要程序代码,第一个函数是讲述了可以获取所有文章内容摘要,另一个是在首页只显示第一个记录的文章内容摘要.

这个是我自己写的获取文章内容摘要程序,代码如下:

  1. <?php   
  2. global $more;     
  3. $more = 1;    //1=全文 0=摘要    
  4. $my_content = strip_tags(get_the_excerpt(), $post->post_content); //获得文章    
  5. $my_content = str_replace(array("rn""r""n"" ""t""o""x0B","""),"",$my_content);  //删除空格等   如果 不想删除请直接吧这行前面 加上//   
  6. $my_content = mb_strimwidth($my_content, 0, 500,"..."  );  //摘要前500字节   
  7. if (mb_strlen($my_content,'utf-8') < 10){ echo "对不起没有摘要";  }    //少于10字节提示语言   
  8. else echo $my_content;  
  9. ?> 

首页第一篇显示全文,其他显示摘要,内容输出部分改成以下代码:

  1. if(!$first){ 
  2. $first = 1; 
  3. $more = 1; 
  4. the_content(); 
  5. $more = 0; 
  6. else { 
  7. the_excerpt(); //或者使用the_content(); 

Tags: WordPress 文章内容摘要

分享到: