Hello, I am trying to figure out how to add a link in the navigation menu of my WordPress theme (in header.php) and making it appear only on the homepage and not sitewide as it usually is. Is that even possible and how do you do that? Any help would be appreciated. Thanks.
Use below given code in header.php where you want this link. <?php if ( is_home() || is_page() ) { ?> [COLOR="Navy"]Your link details[/COLOR] <?php } ?> Code (markup): DON.