Created
May 6, 2017 13:45
-
-
Save donsony/e85d588a5d2335e57ecd8f7fe231ab31 to your computer and use it in GitHub Desktop.
# javascript:void(0) Link Alternative for Wordpress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function infuse_replace_hash($menu_item) { | |
if (strpos($menu_item, 'href="#"') !== false) { | |
$menu_item = str_replace('href="#"', 'href="javascript:void(0);"', $menu_item); | |
} | |
return $menu_item; | |
} | |
add_filter('walker_nav_menu_start_el', 'infuse_replace_hash', 999); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment