When I try to set role:
$user_id->set_role('contributor');
I get this error:
Fatal error: Call to a member function set_role() on a non-object in...
What am I missing?
When I try to set role:
$user_id->set_role('contributor');
I get this error:
Fatal error: Call to a member function set_role() on a non-object in...
What am I missing?
Ok I found problem, I was missing this
$user_id_role = new WP_User($user_id);
then changed this
$user_id_role->set_role('contributor');
This topic has been closed to new replies.