Can’t add user to blog on registration (Multisite)
Regarding the update part in your question: I think the problem here is that you’re missing the number of accepted arguments in your add_action() setup. If you check out the Codex, the usage is: add_action( $hook, $function_to_add, $priority, $accepted_args ); where by default $priority = 10 and $accepted_args = 1. So your code snippet should … Read more