Forked from donsony/gist:e85d588a5d2335e57ecd8f7fe231ab31
Created
April 23, 2021 11:04
-
-
Save hassoon1986/5b2c30b4be8da71f3ec484d234787bb1 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