Question

I'd been crawling the codex but can't seem to find a function that will allow me to programmatically enable the User registration system. Hopefully, I can make a custom plugin that will enable User registration system by default.

Était-ce utile?

La solution

You can do it by using this code:

add_action('init', 'update_anyone_can_register');
function update_anyone_can_register() {
  update_option('users_can_register', true);
}

I tested on my functions.php file and it worked as expected.

Licencié sous: CC-BY-SA avec attribution
Non affilié à wordpress.stackexchange
scroll top