This snippet will create a collection for the user when they make an account. It will be named “USERNAME’s COLLECTION”
function create_post_for_new_user($user_id){
$user = get_userdata($user_id);
$username = $user->user_login;
Â
// Post data
$post_data = array(
'post_author' => $user_id,
'post_title' => $username . "'s collection",
'post_status' => 'publish',
'post_type' => 'collection'
);
Â
// Create the new post
wp_insert_post($post_data);
}
Â
// Hook into 'user_register'
add_action('user_register', 'create_post_for_new_user');