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

WordPress the_excerpt()函数文章摘要字数并加上链接

发布:smiling 来源: PHP粉丝网  添加日期:2014-06-21 15:50:45 浏览: 评论:0 

the_excerpt()函数对于数字控制与给摘要带连接的技巧,希望此文章对各位会有所帮助.

WordPress里显示文章摘要的函数the_excerpt()默认是显示55个字,对于一些模板来说,只显示55个字的摘要貌似有些短,因此我们有必要在模板函数functions.php里面对the_excerpt()做个改造,使之按着我们的需求来展示更多(或更少)的摘要,改动很简单,在functions.php里加上这么一段即可:

  1. function emtx_excerpt_length( $length ) { 
  2.  return 92; //把92改为你需要的字数,具体就看你的模板怎么显示了。 
  3. add_filter( 'excerpt_length''emtx_excerpt_length' ); 

上面的只是对数字控制了,那么要如何给字符带上链接地址呢.处理方法很简单,我们只要往主题的functions.php里加上这么一段代码:

  1. function emtx_continue_reading_link() { 
  2.  return ' <a href="'. get_permalink() . '">查看全文&rarr;</a>'
  3.  
  4. function emtx_auto_excerpt_more( $more ) { 
  5.  return ' &hellip;' . emtx_continue_reading_link(); 
  6. add_filter( 'excerpt_more''emtx_auto_excerpt_more' ); 
  7.  
  8. function emtx_custom_excerpt_more( $output ) { 
  9.  if ( has_excerpt() && ! is_attachment() ) { 
  10.   $output .= emtx_continue_reading_link(); 
  11.  } 
  12.  return $output
  13. add_filter( 'get_the_excerpt''emtx_custom_excerpt_more' ); 

Tags: the_excerpt 文章摘要字数

分享到: