'; printf( '%1$s', esc_html__( 'MENU', 'amy' ) ); if ( has_nav_menu( 'primary' ) ) { wp_nav_menu( array( 'theme_location' => 'primary', 'container' => false, 'menu_class' => 'nav-menu', 'fallback_cb' => false, 'link_before' => '', 'link_after' => '', ) ); } else { if ( $manage_link ) { printf( '', esc_url( admin_url( 'nav-menus.php' ) ), esc_html__( 'Manage Navigation', 'amy' ) ); } } echo ''; } endif; if ( ! function_exists( 'amy_footer_navigation' ) ) : /** * Prints footer navigation. */ function amy_footer_navigation() { if ( has_nav_menu( 'footer' ) ) { echo ''; } } endif; if ( ! function_exists( 'amy_mobile_navigation' ) ) : /** * Display mobile navigation. */ function amy_mobile_navigation() { echo ''; echo ''; } endif;