Changeset 24207 for trunk/wp-includes/comment-template.php
- Timestamp:
- 05/08/2013 09:27:31 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/comment-template.php
r24126 r24207 394 394 * Retrieve the excerpt of the current comment. 395 395 * 396 * Will cut each word and only output the first 20 words with ' ...' at the end.397 * If the word count is less than 20, then no truncating is done and no ' ...'396 * Will cut each word and only output the first 20 words with '…' at the end. 397 * If the word count is less than 20, then no truncating is done and no '…' 398 398 * will appear. 399 399 * … … 420 420 $excerpt .= $blah[$i] . ' '; 421 421 } 422 $excerpt .= ($use_dotdotdot) ? ' ...' : '';422 $excerpt .= ($use_dotdotdot) ? '…' : ''; 423 423 return apply_filters('get_comment_excerpt', $excerpt); 424 424 }
Note: See TracChangeset
for help on using the changeset viewer.