How can the Home link be disable from the
WordPress top nav?
Answers:
1.
Using Jquery to hide it
2.
By adding this code in
functions.php function page_menu_args( $args ) { $args[‘show_home’] = FALSE;
return $args; } add_filter( ‘wp_page_menu_args’, ‘page_menu_args’ );
3.
wp_nav_menu(
array(‘menu’ => ‘news’, ‘show_home’ => false))
4.
Can not disable the
default Home link from wordpress top nav