Skip to content

Instantly share code, notes, and snippets.

@atwellpub
Created December 19, 2014 20:28
Show Gist options
  • Save atwellpub/e797861b30286c12b44b to your computer and use it in GitHub Desktop.
Save atwellpub/e797861b30286c12b44b to your computer and use it in GitHub Desktop.
Reveals hidden submenus on page load for twentyfifteen theme.
/**
* Toggles the menu dropdowns to open state
*/
function mod_toggle_menus() {
?>
<script type='text/javascript'>
jQuery(document).ready( function() {
/* add toggled-on class to submenus */
jQuery('.sub-menu').addClass('toggled-on');
});
</script>
<?php
}
add_action('wp_footer' , 'mod_toggle_menus');
@buddhabunnee
Copy link

Thank you! :D

@mpsparrow
Copy link

Thank you soooooo much!!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment