• Hi,

    I’m new to php and wordpress but and maybe I’m doing somthing wrong, but…

    The Elmax theme does not correctly link to the Home page.

    The generated HTML is

    <h1 id="logo">
        <a href="">Example Title</a>
    </h1>

    The code that generates this is in the header.php file.

    <h1 id="logo"><a href="<?php esc_url (home_url('/')); ?>"><?php bloginfo( 'name' ); ?></a></h1>

    I think the code should be

    <h1 id="logo"><a href="<?php echo esc_url (home_url('/')); ?>"><?php bloginfo( 'name' ); ?></a></h1>

    This will then correctly generate the correct HTML

    <h1 id="logo">
        <a href="https://example.com/">Example Title</a>
    </h1>

    Cheers,
    Zac

  • The topic ‘Home URL not working in heading h1 tag’ is closed to new replies.