Changeset 8958 for trunk/wp-includes/formatting.php
- Timestamp:
- 09/22/2008 09:21:05 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/formatting.php
r8786 r8958 1325 1325 $text = str_replace(']]>', ']]>', $text); 1326 1326 $text = strip_tags($text); 1327 $excerpt_length = 55;1327 $excerpt_length = apply_filters('excerpt_length', 55); 1328 1328 $words = explode(' ', $text, $excerpt_length + 1); 1329 1329 if (count($words) > $excerpt_length) {
Note: See TracChangeset
for help on using the changeset viewer.