atticus-finch/functions/mobile-menus.php
2016-02-13 13:23:12 -05:00

24 lines
470 B
PHP

<?php
function atticus_finch_mobile_menus(){
echo '
<script type="text/javascript">
$("#aboveheadermenu").menumaker({
title: "aboveheadermenu",
breakpoint: 640,
format: "select"
});
$("#belowheadermenu").menumaker({
title: "belowheadermenu",
breakpoint: 640,
format: "multitoggle"
});
$("#footermenu").menumaker({
title: "footermenu",
breakpoint: 640,
format: "select"
});
</script>
';
}
add_action( 'wp_footer', 'atticus_finch_mobile_menus' );