Advertisement
Guest User

odd even

a guest
Feb 3rd, 2013
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. // Assign even and odd classes to nav bar menu items
  2.  
  3. add_action('wp_enqueue_scripts', 'add_my_code');
  4.  
  5. function add_my_code() {
  6. add_action( 'print_footer_scripts', 'my_footer_script' );
  7. }
  8.  
  9. function my_footer_script() { ?>
  10. <script type="text/javascript">
  11. jQuery(document).ready(function($) {
  12. $("#menu-standaard > li:nth-child(odd)").addClass("odd");
  13. $("#menu-standaard > li:nth-child(even)").addClass("even");
  14. });
  15. </script>
  16. <?php }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement