I have come across this a few times when updating older sites to WordPress 3.0 that the fancy new menu system in WP3.0 doesn’t work. Fortunately, this is an easy fix.
First off, you will be editing your functions.php file, so make a backup!
Now, add this code to your funtions.php file:
add_action( ‘init’, ‘register_my_menus’ );
function register_my_menus() {
register_nav_menus(
array(
‘menu-1’ => __( ‘Menu 1’ ),
‘menu-2’ => __( ‘Menu 2’ )
)
);
}
You can name the menu’s whatever you like. ie Primary, Secondary.
Next step is to open your header.php file and replace what you have with this new code:
‘menu-1’ ) ); ?>
For me, I was using pixopoints multi level plugin, so I simply replaced that code with the call above.
Now you are free to build your menu’s using the advanced features of wp3.0
Setting up Rel Author
We might be a little late on this one, but it is worth setting up your rel author tags on Google plus. Google is very much looking at this type of information for rankings now, so it makes sense to get it done. There are several places to learn how to do this. Here is…
Adding A Featured Image To A Page In Genesis
After looking around the web for a good tutorial, I really couldn’t find what that accomplished what I was looking to do. It sounds simple. I want to add a featured image to a page in Genesis. No problem right? Not exactly. Genesis doesn’t work like a normal wordpress site, but then if you are…
Disable Auto Format in wordpress
This is a great trick I found today while working on a problem for a client. What was happening is that wordpress was wrapping her image in paragraph tags and causing it not to float right with text wrapping around it. The solution was to add this to the functions.php file. (note, make sure you…