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
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>
gigi061978
Member
Posted 2 years ago #