【发布时间】:2018-11-01 23:13:41
【问题描述】:
正如标题所说,我需要缩短我的网格 - 存档 - 页面的帖子标题。 例如,我的页面标题是“20 种清洁汽车的方法。2018 年最佳提示和技巧。” 但在存档页面上,我只想展示“20 种清洁汽车的方法。”
我发现一些代码在一定数量的字母后停止,但如果出现某个单词,我想停止。 “最佳”例如。也许有人可以帮助我。
这是我目前尝试的代码。
function custom_trim_my_title( $title ) {
if ( strlen( $title ) >= 50 && ! is_singular() ) {
$title = substr( $title, 0, 50 ) . '...';
return $title;
}
return $title;
}
add_filter( 'the_title', 'custom_trim_my_title' );
所以希望有人能够帮助我。提前致谢。
【问题讨论】:
标签: wordpress grid title archive strlen