Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter( 'wp_nav_menu_items', 'add_logo_nav_menu', 10, 2 );
- function add_logo_nav_menu($items, $args){
- $newitems = '<li><a title="logo" href="#">LOGO</a></li>';
- $newitems .= $items;
- return $newitems;
- }
Advertisement
Add Comment
Please, Sign In to add comment