How to order my menu?
-
<ul id="menu"> <li><a href="<?php bloginfo('url'); ?>">Home</a></li> <?php wp_list_pages('title_li=&depth=1' ); ?> <li><a href="<?php echo get_category_link($blog_category_page); ?>">Blog</a></li> </ul>
This is my menu. It is OK! I just want to find a way to order it a little more specific. At the moment, First you see a ‘home’ link, then all my pages, and then at the end, the ‘Blog’ link. I would like to have the blog-link somewhere in the middle, so: in between the pages, so that the page ‘contact’ is last.
Now, I only know how to get ‘blog’ on the second place, next to home, by simply moving the code up a line. Is there a way to order them more precise?
To sum up: in my menu I have now: home – page – page – page – blogcategory. I want it to be home – page – page – blogcategory – page. How do I do this?
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘How to order my menu?’ is closed to new replies.