2016-02-13 18:23:12 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
function atticus_finch_mobile_menus(){
|
|
|
|
echo '
|
|
|
|
<script type="text/javascript">
|
2016-02-13 18:43:11 +00:00
|
|
|
jQuery(document).ready(function() {
|
|
|
|
jQuery("#aboveheadermenu").menumaker({
|
2016-02-13 22:25:02 +00:00
|
|
|
title: "' . get_theme_mod('atticus_finch_top_menu_name') . '",
|
2016-02-13 18:23:12 +00:00
|
|
|
breakpoint: 640,
|
2016-02-13 22:25:02 +00:00
|
|
|
format: "' . get_theme_mod('atticus_finch_top_menu_type') . '"
|
2016-02-13 18:23:12 +00:00
|
|
|
});
|
2016-02-13 18:43:11 +00:00
|
|
|
jQuery("#belowheadermenu").menumaker({
|
2016-02-13 22:25:02 +00:00
|
|
|
title: "' . get_theme_mod('atticus_finch_main_menu_name') . '",
|
2016-02-13 18:23:12 +00:00
|
|
|
breakpoint: 640,
|
2016-02-13 22:25:02 +00:00
|
|
|
format: "' . get_theme_mod('atticus_finch_main_menu_type') . '"
|
2016-02-13 18:23:12 +00:00
|
|
|
});
|
2016-02-13 18:43:11 +00:00
|
|
|
jQuery("#footermenu").menumaker({
|
2016-02-13 22:25:02 +00:00
|
|
|
title: "' . get_theme_mod('atticus_finch_footer_menu_name') . '",
|
2016-02-13 18:23:12 +00:00
|
|
|
breakpoint: 640,
|
2016-02-13 22:25:02 +00:00
|
|
|
format: "' . get_theme_mod('atticus_finch_footer_menu_type') . '"
|
2016-02-13 18:23:12 +00:00
|
|
|
});
|
2016-02-13 18:43:11 +00:00
|
|
|
});
|
2016-02-13 18:23:12 +00:00
|
|
|
</script>
|
|
|
|
';
|
|
|
|
}
|
|
|
|
add_action( 'wp_footer', 'atticus_finch_mobile_menus' );
|