';
$html[] = '
';
$html[] = $logo ? '
' : '';
$html[] = '';
ob_start();
if ( has_nav_menu( 'mobile' ) ) {
wp_nav_menu(array(
'theme_location' => 'mobile',
));
} else {
wp_nav_menu(array(
'theme_location' => 'primary',
'mobile' => true,
));
}
$html[] = ob_get_clean();
$html[] = '
';
return implode( "\n", $html );
}
}
/**
* Generate header mobile icon.
*/
if ( ! function_exists( 'amy_xmas_mobile_icon' ) ) {
function amy_xmas_mobile_icon() {
$html = array();
$html[] = '';
return implode( "\n", $html );
}
}