Forums

[resolved] avoid the highlight for the home (3 posts)

  1. gigi061978
    Member
    Posted 2 years ago #

    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

  2. Safirul Alredha (zeo)
    Member
    Posted 2 years ago #

    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>

  3. gigi061978
    Member
    Posted 2 years ago #

    ok,
    thanks a lot

Topic Closed

This topic has been closed to new replies.

About this Topic