WordPress-如何在预览中仅显示两个句子the_excerpt

时间:2018-09-30 16:08:47

标签: php wordpress

我只需要预览两句话,怎么办?

    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');

我有一个代码,可以用它写第一个句子,但是我该如何修正它以显示两个?

0 个答案:

没有答案