Changeset 2567 for trunk/wp-includes/template-functions-post.php
- Timestamp:
- 04/21/2005 12:55:30 AM (21 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/template-functions-post.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/template-functions-post.php
r2566 r2567 17 17 function the_title($before = '', $after = '', $echo = true) { 18 18 $title = get_the_title(); 19 if ( !empty($title)) {19 if ( strlen($title) > 0 ) { 20 20 $title = apply_filters('the_title', $before . $title . $after, $before, $after); 21 21 if ($echo)
Note: See TracChangeset
for help on using the changeset viewer.