Advertisement
shekhar77

WPML menu dropdown for twitter-bootstrap theme

Mar 24th, 2016
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. function wpml_menu_dropdown_custom_scripts() {
  2. ?>
  3. <script>
  4. ( function( $ ) {
  5. $(document).ready(function() {
  6. $('li.menu-item-language-current a').attr({'data-toggle':'dropdown', 'class': "dropdown-toggle", 'aria-haspopup':'true'});
  7. $('li.menu-item-language-current').find('ul.sub-menu').addClass('dropdown-menu');
  8. });
  9. }
  10. )( jQuery )
  11. </script>
  12. <?php
  13. }
  14. add_action( 'wp_head', 'wpml_menu_dropdown_custom_scripts');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement