remove standard menu item called “Home”
-
Hello,
is it possible to remove the follow standard menu item called “Home”?
if ( ! function_exists( 'deejay_menu_home' ) ) { function deejay_menu_home( $items, $args ) { if ( 'bar' === $args->theme_location ) { $new_item = array( '<li class="menu-item"><a href="' . esc_url( home_url( '/' ) ) . '" rel="home">' . esc_html__( 'Home', 'deejay' ) . '</a></li>' ); $items = preg_replace( '/<\/li>\s<li/', '</li>,<li', $items ); $array_items = explode( ',', $items ); array_splice( $array_items, 0, 0, $new_item ); $items = implode( '', $array_items ); } return $items;
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘remove standard menu item called “Home”’ is closed to new replies.