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 Warning To Non-Mobile Friendly Web Sites
Today one of the sites we work with got a message in their Google Webmaster Tools. The message titled “Fix mobile usability issues found on yoursite.com” basically informs the site own that because “These pages will not be seen as mobile-friendly by Google Search, and will therefore be displayed and ranked appropriately for smartphone users.”…
Google losing market share
Recently posted in the Wall Street Journal, Market researcher Statcounter says Google’s share of U.S. search traffic, excluding mobile devices, declined to 75.3% in December from 77.5% in November, after the maker of the Firefox browser made Yahoo the default search engine. Yahoo YHOO -1.05%’s share of search traffic excluding mobile devices grew to 10%,…
Can good links solve Penguin Problems
In a recent video hangout with Google’s John Mueller, John said that even without using the disavow file or removing bad links, it is possible to recover from a Google Penguin Penalty. So instead of going through all the trouble of removing bad links and creating a disavow file, Google is saying adding good links…