Добрый день.
Заюзал тему для вордрпесс одностраничную. Она с паралакс эффектом и якорями.
Но в меню почему то лезет "Главная" или Home в англ версии. Помогите удалить его.
<?php
$navMenu = wp_nav_menu( array('theme_location' => '', 'container' => '', 'container_class' => '', 'items_wrap' => '<ul>%3$s</ul>', 'echo' => false ) );
if ( 'page' == get_option( 'show_on_front' ) && ( '' != get_option( 'page_for_posts' ) ) && $wp_query->get_queried_object_id() == get_option( 'page_for_posts' ) ) :
echo str_replace(array('<div class="menu">','</div>'), '', $navMenu);
else :
if( of_get_option('numsection', true) > 0 ) {
$menu_list = '';
$numSections = esc_attr( of_get_option('numsection', true) );
for( $s=1; $s<=$numSections; $s++ ){
$menutitle = ( of_get_option('menutitle'.$s, true) != '' ) ? esc_html( of_get_option('menutitle'.$s, true) ) : '';
$menu_list .= ( $menutitle != '' ) ? '<li><a href="'.esc_url(home_url('/')).'#section'.$s.'">'.strtoupper($menutitle).'</a></li>' : '';
}
}
echo skt_parallaxme_str_lreplace('</ul>', $menu_list.'</ul>', str_replace(array('<div class="menu">','</div>'), '', $navMenu) );
endif;
?>