• Resolved Matthew Stratford

    (@mstratford)


    Hello,

    This is the same on the Demo and on my site, where the homepage doesn’t have a title at all (the webadress is shown), and other pages don’t have the Site name on either.

    Could this be fixed, or could you let me know what to change in order to repair this?

    Regards,
    Matthew Stratford

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter Matthew Stratford

    (@mstratford)

    I ended up using this in the header.php file, maybe you should add this?

    <title><?php bloginfo('name'); ?> | <?php is_home() ? bloginfo('description') : wp_title(''); ?></title>

    Theme Author DigitalCourt

    (@digitalcourt)

    Sorry you had this issue and thanks for the debug.

    I’ve updated it to:
    <?php bloginfo('name'); ?> | <?php is_front_page() ? bloginfo('description') : wp_title(''); ?>

    This version will be released later this week 🙂

    using is_front_page() to cater for blogs on inner pages too.

    Thread Starter Matthew Stratford

    (@mstratford)

    Ahh yes, that’s what I ended up using, but I copied the wrong thing 🙂

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘tag isn't working properly.’ is closed to new replies.