Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save dmhendricks/d3904c52968dbfc7df4423f3b0d3d204 to your computer and use it in GitHub Desktop.

Select an option

Save dmhendricks/d3904c52968dbfc7df4423f3b0d3d204 to your computer and use it in GitHub Desktop.
A hack to automatically tick "Remember Me" checkbox at WordPress login to save support headaches
<?php
/**
* Add the following to your child theme's functions.php file to remove
* automatically tick the "Remember Me" checkbox at WordPress login.
*/
add_action( 'init', function() {
add_filter( 'login_footer', function() {
echo "<script>document.getElementById('rememberme').checked = true;</script>";
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment