我只需要预览两句话,怎么办?
add_filter(
'the_excerpt',
function ($excerpt) {
return substr($excerpt,0,strpos($excerpt,'.')+1);
}
);
function excerpt_read_more_link($output) {
global $post;
$output = preg_replace('/(.*?[?!.](?=\s|$)).*/', '\\0', $output);
if(mb_strlen($output) > 300) {
$output = mb_substr($output, 0, 300);
}
return $output;
}
add_filter('the_excerpt', 'excerpt_read_more_link');
我有一个代码,可以用它写第一个句子,但是我该如何修正它以显示两个?