Old Wordpress Theme

Associate
Joined
31 Jan 2010
Posts
283
Location
UK
I am using a Basic Wordpress theme called Manifest as a framework for a site I am working on.

The theme is great because its simple and very easy to modify. The only down side I have found is that it doesn't use the Wordpress Custom Menu System.

What is the quickest/easiest way to convert the theme to support the Wordpress Menu System.

I only have 1 menu on the site at the top of the page. The current code for the Menu is as follows:

Code:
<div id="mainNav">
    <ul>
      <?php wp_list_pages('title_li=&depth=1'); ?>
    </ul>
  </div>

The Wordpress Theme is so basic that it doesn't even have a functions.php file so I am guessing I will need to create this file too?

Thanks in Advance!
 
Back
Top Bottom