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)

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

报告相同问题?

悬赏问题

  • ¥15 minnio内存占用过大,内存没被回收(Windows环境)
  • ¥65 抖音咸鱼付款链接转码支付宝
  • ¥15 ubuntu22.04上安装ursim-3.15.8.106339遇到的问题
  • ¥15 求螺旋焊缝的图像处理
  • ¥15 blast算法(相关搜索:数据库)
  • ¥15 请问有人会紧聚焦相关的matlab知识嘛?
  • ¥15 网络通信安全解决方案
  • ¥50 yalmip+Gurobi
  • ¥20 win10修改放大文本以及缩放与布局后蓝屏无法正常进入桌面
  • ¥15 itunes恢复数据最后一步发生错误