Advertisement
afsarwebdev

wp-nav-active and dropdown filter

Feb 19th, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. //----------------------------------------------------------------------
  2. // Add a pingback url auto-discovery header for single posts, pages, or attachments.
  3. //----------------------------------------------------------------------
  4. function ic_change_active_nav_class ($classes, $item) {
  5. if (in_array('current-menu-parent', $classes) ){
  6. $classes[] = 'active ';
  7. }
  8. if (in_array('current-menu-item', $classes) ){
  9. $classes[] = 'active ';
  10. }
  11. if (in_array('menu-item-has-children', $classes) ){
  12. $classes[] = 'ic-dropdown ';
  13. }
  14. return $classes;
  15. }
  16. add_filter('nav_menu_css_class' , 'ic_change_active_nav_class' , 10 , 2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement