plugins - User upload dashboard

I have multiple user and each user should have the option to upload some documents in his account. I used this function

I have multiple user and each user should have the option to upload some documents in his account.

I used this function in order to create a folder for each user at the registration process.

function create_user_dir($user_id) {
    $user_info = get_userdata( $user_id );

    $upload_dir = wp_upload_dir();
    $user_dir = $upload_dir['basedir'] . '/user_dirs/' . $user_info->user_login;

    wp_mkdir_p($user_dir);
}
add_action( 'user_register', 'create_user_dir');

Now I need to make the upload field, do you have any idea? Thanks

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745442329a4627885.html

相关推荐

  • plugins - User upload dashboard

    I have multiple user and each user should have the option to upload some documents in his account. I used this function

    3小时前
    20

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信