• akapellos

    (@salat-production)


    How to rewrite user_nicename after register?
    this function doesnt work.

    function get_new_nicename($user_id){
     wp_update_user( array ('user_nicename' => $user_id) ) ;
     }
     add_action('user_register','get_new_nicename',10);

    i need to change nicename to ID

    or maybe possible to check nicename like username?
    get_user_by(‘nicename’) bla bla

Viewing 1 replies (of 1 total)
  • You need to also pass the user ID along w/ the field you want to update – this should work.

    function get_new_nicename($user_id){
    wp_update_user( array ( 'ID' => $user_id, 'user_nicename' => $user_id) ) ;
    }
    add_action('user_register','get_new_nicename',10);
Viewing 1 replies (of 1 total)
  • The topic ‘user_register hook’ is closed to new replies.