Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save meetKowshik/795531f8b09d6fa3d4cc7d0e0c65b140 to your computer and use it in GitHub Desktop.
Save meetKowshik/795531f8b09d6fa3d4cc7d0e0c65b140 to your computer and use it in GitHub Desktop.
Browser back button disable in wordpress
<?php if(is_page('page title')){ ?>
<script type = "text/javascript" >
history.pushState(null, null, 'page-slug');
window.addEventListener('popstate', function(event)
{
history.pushState(null, null, 'page-slug');
});
</script>
<?php }?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment