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.

有帮助吗?

解决方案

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.

许可以下: CC-BY-SA归因
scroll top