Using a post-signup hook to get user details

Update: I got this working with a different hook user_register. It looks like wpmu_activate_user was never triggering. I would still like to have this happen after the user verifies and sets a password though. Can anyone help? Current Code: function xxx_whmcs_signup($user_id) { //Get User Fields $user_info2 = get_userdata($user_id); $id = $user_info2->ID; //Get Custom Fields $first_name … Read more

wp_insert_post if page doesn’t exist under current page

I am trying to dynamically insert a page/multiple pages as a child under the current page in my template file, using wp_insert_post, however I need to first check if the page title already exists under the current page, and if it doesn’t exist then to run the code and create the page(s), but don’t want it to create a duplicate page under the current page if the title already exist under the current page only.