Changeset 3368
- Timestamp:
- 12/28/05 00:55:55 (3 years ago)
- Files:
-
- trunk/wp-includes/functions-post.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-includes/functions-post.php
r3358 r3368 706 706 $excerpt = str_replace(']]>', ']]>', $excerpt); 707 707 $excerpt = strip_tags($excerpt); 708 $excerpt = substr($excerpt, 0, 252) . '...'; 708 if ( function_exists('mb_strcut') ) // For international trackbacks 709 $excerpt = mb_strcut($excerpt, 0, 252, get_settings('blog_charset')) . '...'; 710 else 711 $excerpt = substr($excerpt, 0, 252) . '...'; 709 712 710 713 $post_title = apply_filters('the_title', $post->post_title);
