Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save 9ete/4b093d469021441c1d16daf9eb0f2554 to your computer and use it in GitHub Desktop.
Save 9ete/4b093d469021441c1d16daf9eb0f2554 to your computer and use it in GitHub Desktop.
WordPress action to check the login box 'remember me' checkbox by default without JavaScript
<?php
add_action( 'login_init', function(){$_POST['rememberme'] = 'remember';});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment