Disregard last post. I remember now.
- calls up individual entries. The only question is how to call up the category.
Here we go:
<ul>
<li <?php if(is_home()){echo 'class="current_page_item"';}?>><a href="<?php bloginfo('siteurl'); ?>" class="stuff" title="Home">Home</a></li>
<li><a href="<?php echo get_settings('home'); ?>" class="stuff">Articles</a>
<ul><?php wp_list_categories('sort_column=name&title_li=&depth=2'); ?></ul>
</li>
<?php wp_list_pages('title_li=&depth=2');?>
</ul>
As you can see, there is one for “home”, one for all categories, and one for all pages. How do I just call up a specific category?
In that particular milieu I have no idea how to add an item. All the items are already listed as “list_all_categories” and “list_all_pages”. As there are no individually listed entries, I don’t know the syntax for doing so.