Get Involved
No items added to cart
Home
Discover
Hire
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 postwp_insert_post($post_data);} // Hook into 'user_register'add_action('user_register', 'create_post_for_new_user');
Are you sure you want to exit? Your current conversation will be lost.