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
Google Penguin update. Making Google Worse than Ever.
Google has released a new update and this time its called Penguin. The days of Panda are over and SEO’s all over the world are very unhappy. Penguin seems to have gone too far making search results less relevant than ever. Goolge says these updates are aimed at cleaning up the spammy results from the…
Penality for ‘Over-Optimized’ websites
On the SWSX event in America, Google’s Spam team member Matt Cutt’s announced about the new changes in Google search results coming in Weeks/months designed to penalize the Over – Optimized Sites. This announcements give shock to the techies & SEO professional. After Spreading this news over the Web the response by the Matt cutt’s…
Google Panda 3.4
Google recently used Twitter to officially announce the release of the latest update to its ranking algorithm, Panda 3.4. This update rolled out on March 24 andis targeting low-quality websites. The update was specifically a refresh to Panda 3.3, so it seems no new signals or algorithm changes were made. What this means is that…