Moving menus in Wordpress
I make my own theme for wordpress, but the problem is that i can't move pages from vertical menu to horizontal menu. So how can I move pages from vertical menu to horizontal menu in wordpress, Like this image?
ht开发者_如何学运维tp://imageshack.us/photo/my-images/852/questionq.gif/
Here is an example of horizontal menu:
<div id="navmenu">
<ul>
<li><a href="<?php echo get_settings('home'); ?>">HOME</a></li>
<?php wp_list_pages('orderby=name&include=1,3,4,5'); ?>
<li><a href="http://www.wordpress.org">WORDPRESS</a></li>
</ul>
</div>
精彩评论