Skip to content

Instantly share code, notes, and snippets.

@BevanR
Created May 21, 2015 04:02
Show Gist options
  • Save BevanR/d6337c508a56b21e639a to your computer and use it in GitHub Desktop.
Save BevanR/d6337c508a56b21e639a to your computer and use it in GitHub Desktop.
How to make the "Remember me" checkbox be checked by default in WordPress
<?php
/**
* Makes the "Remember me" checkbox checked by default.
*/
add_filter( 'login_form_defaults', function (array $args) {
$args['value_remember'] = true;
return $args;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment