Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save donsony/e85d588a5d2335e57ecd8f7fe231ab31 to your computer and use it in GitHub Desktop.
Save donsony/e85d588a5d2335e57ecd8f7fe231ab31 to your computer and use it in GitHub Desktop.
# javascript:void(0) Link Alternative for Wordpress
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