partial menu links not showing up
-
My menu links are only partially showing up on all my pages except the blog page where they are showing up as I’d like them.
Can’t for the life of me figure out what I need to adjust in the code to make the menu work properly on all pages.
home: https://ktotheatothei.com (incorrect menu)
blog: https://ktotheatothei.com/blog/ (correct menu)Here is the menu code in header.php
<div id="menu"> <h1><a href="<?php bloginfo('url'); ?>"><b>KtotheAtotheI</b>.com</a></h1> <div></div> <ul> <li <?php if ( is_home() ) { ?>class="cur"<?php } else { ?><?php } ?>><a href="<?php bloginfo('url'); ?>/about">ABOUT</a> <?php if ( is_home() ) { ?> <ul> <li <?php if ( is_page(love) ) { ?>class="cur"<?php } else { ?><?php } ?>><a href="/photos">PHOTOS</a></li> <li <?php if ( is_page(about) ) { ?>class="cur"<?php } else { ?><?php } ?>><a href="/video">VIDEO</a></li> <li <?php if ( is_page(about) ) { ?>class="cur"<?php } else { ?><?php } ?>><a href="/contact">CONTACT</a></li> </ul> </li><?php } else { ?></li><?php } ?> <li <?php if ( is_page(blog) ) { ?>class="cur"<?php } else { ?><?php } ?>><a href="<?php bloginfo('url'); ?>/blog">BLOG</a> <?php if ( is_page(blog) ) { ?> <ul> <li <?php if ( is_page(love) ) { ?>class="cur"<?php } else { ?><?php } ?>><a href="/photos">PHOTOS</a></li> <li <?php if ( is_page(about) ) { ?>class="cur"<?php } else { ?><?php } ?>><a href="/video">VIDEO</a></li> <li <?php if ( is_page(about) ) { ?>class="cur"<?php } else { ?><?php } ?>><a href="/contact">CONTACT</a></li> </ul> </li><?php } else { ?></li><?php } ?> <li <?php if ( is_page(projects) ) { ?>class="cur"<?php } else { ?><?php } ?>><a href="<?php bloginfo('url'); ?>/projects">PROJECTS</a> <?php if ( is_page(about) ) { ?> <ul> <li <?php if ( is_page(love) ) { ?>class="cur"<?php } else { ?><?php } ?>><a href="/photos">PHOTOS</a></li> <li <?php if ( is_page(about) ) { ?>class="cur"<?php } else { ?><?php } ?>><a href="/video">VIDEO</a></li> <li <?php if ( is_page(about) ) { ?>class="cur"<?php } else { ?><?php } ?>><a href="/contact">CONTACT</a></li> </ul> </li><?php } else { ?></li><?php } ?> </ul> </div>
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘partial menu links not showing up’ is closed to new replies.