Make WordPress Core

Ticket #10395: 10395.patch

File 10395.patch, 575 bytes (added by ramiy, 15 years ago)
  • wp-includes/formatting.php

     
    17001700                $excerpt_length = apply_filters('excerpt_length', 55);
    17011701                $words = explode(' ', $text, $excerpt_length + 1);
    17021702                if (count($words) > $excerpt_length) {
     1703                        $excerpt_more = apply_filters('excerpt_more', '[...]');
    17031704                        array_pop($words);
    1704                         array_push($words, '[...]');
     1705                        array_push($words, $excerpt_more);
    17051706                        $text = implode(' ', $words);
    17061707                }
    17071708        }