Skip to content

Instantly share code, notes, and snippets.

@nikola0203
Created May 29, 2019 10:38
Show Gist options
  • Save nikola0203/399a65a620c27d111de8df49e10d89dd to your computer and use it in GitHub Desktop.
Save nikola0203/399a65a620c27d111de8df49e10d89dd to your computer and use it in GitHub Desktop.
Parent link clickable in Bootstrap with Wordpress NavWalker
// BEFORE
// On line 185:
$atts['href'] = '#';
// On line 186:
$atts['data-toggle'] = 'dropdown';
// AFTER
// On line 185:
$atts['href'] = ! empty( $item->url ) ? $item->url : '';
// On line 186:
$atts['data-hover'] = 'dropdown';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment