• Before I upgraded to 1.5 I was able to use the < br > tag to seperate the two quotes in my tagline. After the upgrade it doesn’t seem to work.

    The site is: The Examined Life – http://www.estephens.org

    Any suggestions?

    e.s.

Viewing 6 replies - 1 through 6 (of 6 total)
  • Moderator James Huff

    (@macmanx)

    Try using <br /><br /> instead.

    Thread Starter es

    (@es)

    Still no luck… all it did was add the characters to the tagline itself…

    Probably because WP now strips out newline tag off tagline. You may want to hardcode the tagline.

    Thread Starter es

    (@es)

    ggrrr….that’s what I thought….so much for convenience….

    I used to have a word italicized in my “tagline”, and with 1.5 it’s now showing the raw html (“<em>“)!!! Is this the same problem/solution?

    thegoose

    (@thegoose)

    For anyone that is interested, here’s my hack to fix this:

    function bloginfo($show='') {
    $info = get_bloginfo($show);
    if ($show != 'description') :
    $info = apply_filters('bloginfo', $info, $show);
    endif;
    echo convert_chars($info);
    }

    in wp-includes/template-functions-general.php

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Different Tagline Question’ is closed to new replies.