Horizontal menu in default WP theme

I am creating a simple webpage using Wordpress. You can watch it at www.unistore.se. How do I enable the horizontal menu just below the header? I would like to be able to create new links in the menu using the New Page feature in the wordpress admin.

-2


a source to share


2 answers


You have to edit the page template for this.



0


a source


Taking a look at your site, it looks like you might have figured it out by now, but just in case - to edit the page template, go to header.php in your theme folder and put this function under the <h1> header display:

<?php wp_list_pages(); ?>

      

Then you can wrap this function in a div and create a list that will be displayed horizontally.



Alternative solution: I haven't tried this, but there is a plugin to create a menu in WordPress - here's the link: http://wordpress.org/extend/plugins/allwebmenus-wordpress-menu-plugin/

Or just search for "menu" at http://wordpress.org/extend/plugins/

0


a source







All Articles