Viewing 6 replies - 1 through 6 (of 6 total)
  • You edit header.php of the theme you are using, where you see a link like this, attached to the logo image <a href="<?php bloginfo('url'); ?>/">.

    Change it to the site home page <a href="https://example.com">.

    Thread Starter jmthms

    (@jmthms)

    No such code reference with the URL as the argument to <a href=”<?php bloginfo(‘url’); in my theme’s header.php file.
    Anyone?

    Which theme are you using? Url to your site, so we can look at it?

    Thread Starter jmthms

    (@jmthms)

    The theme is ‘illuminosity’ I believe. The URL to the site is:

    https://mygeneimage.com/blog

    Open header.php of your theme, right after <div id="header"> <div id="title">, you will find

    <h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>

    change to

    <h1><a href="https://mygeneimage.com/"><?php bloginfo('name'); ?></a></h1>

    Thread Starter jmthms

    (@jmthms)

    That did it! except ‘?php bloginfo(‘name’); ?>’ was not there. That was way up in the <title></title> tags. Thanks.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘changing link url of blog site logo’ is closed to new replies.