helpers.php 180 B

12345678
  1. <?php
  2. function make_excerpt($value, $length = 200)
  3. {
  4. $excerpt = trim(preg_replace('/\r\n|\r|\n+/', ' ', strip_tags($value)));
  5. return str_limit($excerpt, $length);
  6. }