Make WordPress Core


Ignore:
Timestamp:
04/21/2005 12:55:30 AM (21 years ago)
Author:
matt
Message:

Show 0 titles - http://mosquito.wordpress.org/view.php?id=1266 Hat tip: Mark

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/template-functions-post.php

    r2566 r2567  
    1717function the_title($before = '', $after = '', $echo = true) {
    1818    $title = get_the_title();
    19     if (!empty($title)) {
     19    if ( strlen($title) > 0 ) {
    2020        $title = apply_filters('the_title', $before . $title . $after, $before, $after);
    2121        if ($echo)
Note: See TracChangeset for help on using the changeset viewer.