I have the same question. I’m using Cutline, and would also like to add a category link as a menu option.
I have the same question. I’m using Cutline, and would also like to add a category link as a menu option.
I’m manually listing them so I can control the order in which they appear.
Ignore the code snippet, it converted to html. Let me try this:
<ul id="nav">
<li><a <?php if (is_home()) echo('class="current" '); ?>href="<?php bloginfo('url'); ?>">home</a></li>
<li><a <?php if (is_archive() || is_page('archives')) echo('class="current" '); ?>href="<?php bloginfo('url'); ?>/archives/">archives</a></li>
<li><a <?php if (is_page('about-us')) echo('class="current" '); ?>href="<?php bloginfo('url'); ?>/about-us/">about us</a></li>