Monthly Archives: May 2011

Filter WordPress menu

// Filter wp_nav_menu() to add additional links and other output function new_nav_menu_items($items) { // gets passed a string of <li>’s $homelink = ‘<li><a href=”‘ . home_url( ‘/’ ) . ‘”>’ . __(‘Home’) . ‘</a></li>’; $items = $homelink . $items; return … Continue reading

Posted in Wordpress | Tagged , | Comments Off