wordpress 更改excerpt的长度,设置excerpt后面'[...]'的字样和链接

标签: 

更改摘要长度

 

excerpt

 

更多字样

 

read

 

more

 

杂谈

分类: wordpress
1、更改系统默认excerpt的长度

默认情况下,excerpt长度设置为55个字,可以使用excerpt_length过滤器改变excerpt的长度,添加如下代码到主题的functions.php文件即可。

function new_excerpt_length($length) {
       return 20;
}
add_filter('excerpt_length', 'new_excerpt_length');

2、更改系统默认设置更多样式

excerpt后面更多字符串默认设置为'[...]'。为了改变excerpt的更多字符串形式使用excerpt_more过滤器,添加如下代码在主题的functions.php文件即可。

function new_excerpt_more($more) {
       return '......';
}
add_filter('excerpt_more', 'new_excerpt_more');

对于2.9以上版本使用如下代码:

function new_excerpt_more($excerpt) {
       return str_replace('[...]', '...', $excerpt);
}
add_filter('wp_trim_excerpt', 'new_excerpt_more');

3、给文章"read more"添加链接

给文章"read more"添加链接,将如下代码放到主题的functions.php文件。

function new_excerpt_more($more) {

       global $post;
      
       return '<a href="'.get_permalink($post->ID). '">Read the Rest...</a>';
}

add_filter('excerpt_more', 'new_excerpt_more');


源文件:wp_trim_excerpt()在wp-includes/formatting.php.


0

0

阅读 (3737)   评论   (3) 收藏 (0)   转载 (1)   喜欢   打印 举报
已投稿到:
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值