[wd_asp elements=’search’ ratio=’100%’ id=1]

Remove home link in menu

22nd June 2013

Admin WP

wordpress category

Search for this in functions.php and change the true to false, or remove it altogether..


function twentyten_page_menu_args( $args ) {
$args['show_home'] = false;
return $args;
}
add_filter( 'wp_page_menu_args', 'twentyten_page_menu_args' );