Pergunta

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.

Foi útil?

Solução

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.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a wordpress.stackexchange
scroll top