drkbpwk609294 2018-06-27 12:17
浏览 23
已采纳

限制Wordpress中的字符摘录

Right so this seems to have been asked a few times but I cannot seem to find definitive working answer.

Currently I am trying to limit my post title and post excerpt on my WP website.

I have managed to trim the titles by character using

function custom_trim_my_title( $title ) {
if ( strlen( $title ) >= 72 && ! is_singular() ) {
$title = substr( $title, 0, 72 ) . '...';
return $title;
}
return $title;
}
add_filter( 'the_title', 'custom_trim_my_title' );

And that seems to be working okay but I can't seem to get it to work for the excerpt.

I was using this word count:

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

But the longer words still made it look messy so I need a character count and have tried this:

add_filter('the_excerpt','excerpt_char_limit');
function excerpt_char_limit($e){
    return substr($e,0,50);
}

But it doesn't seem to work. Any help would be great.

  • 写回答

1条回答 默认 最新

  • doudun2212 2018-06-27 14:05
    关注

    Try using

    add_filter('the_excerpt','excerpt_char_limit',999);

    instead. It is just in case if some other filter prevents your filter. (999 means executing later than other filters)

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料