• Resolved gigi061978

    (@gigi061978)


    hello,
    I’m new in wordpress,

    I hope it could gives me a lot..
    I have a problem: i want that the home is Highlight only when is on the home (current page), but not when i’m on the other pages,
    what i I have to modify in php

    you can check here: romanelcuore.eu/blog

Viewing 2 replies - 1 through 2 (of 2 total)
  • Open your theme header.php

    Find:
    <li class="current_page_item<?php if (is_home()) echo ' current_page_item'; ?>"><a href="<?php echo get_option('home'); ?>/" class="current_page_item">Homepage</a></li>

    Replace with:
    <li class="<?php if (is_home()) echo 'current_page_item'; ?>"><a href="<?php echo get_option('home'); ?>/" class="current_page_item">Homepage</a></li>

    Thread Starter gigi061978

    (@gigi061978)

    ok,
    thanks a lot

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘avoid the highlight for the home’ is closed to new replies.