• Resolved Kaoskuri

    (@kaoskuri)


    I am working to develop and create a website using WordPress and I would like to have my tagline display below the logo. How would I go about coding that into the theme and having it not be removed when the theme gets updated. I am currently developing the site using a child theme.

Viewing 2 replies - 1 through 2 (of 2 total)
  • First, for any modifications, you want to use a child theme (so you asked a good question). You are already using a child theme so any updates, won’t overwrite your changes.

    In the header.php file, you need to look for this:

    <h2 id="site-description"><?php bloginfo( 'description' ); ?></h2>

    put that below this code:

    case "custom" : // your own logo ?>
    <?php if ( get_option('my_logo') ) : ?>
    <a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
    <div id="logo"><img src="<?php echo get_option( 'my_logo' ); ?>" alt="<?php bloginfo( 'name' ); ?>" /></div></a>
    Thread Starter Kaoskuri

    (@kaoskuri)

    THANK YOU SOOOOOOOO MUCH for the help!! It worked just as I wanted it to.

    This theme and its support is AWESOME!! =)

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to add tagline under logo’ is closed to new replies.