[themify_is_logged_in]
[php]
function create_new_CPT_profile( $response ){
$user_id = $response->ID;
$my_post = array(
‚post_type‘ => ‚lc_user_localhero‘,
‚post_title‘ => ‚Künstler Nr.‘.$user_id,
‚post_content‘ => ‚Beschreibung des Künstlers Nr.‘.$user_id,
‚post_status‘ => ‚private‘,
‚post_author‘ => $user_id
);
$post_id = wp_insert_post( $my_post );
$cptPermalink = get_post_permalink( $post_id );
update_post_meta( $post_id, ‚_wpuf_form_id‘, ’25‘ ); // Enter the WPUF Form ID
update_post_meta( $post_id, ‚lc_user_permalink‘, $cptPermalink );
update_post_meta( $post_id, ‚lc_user_author_id‘, $user_id );
update_post_meta( $post_id, ‚lc_user_online‘, ‚0‘ );
update_user_meta( $user_id, ‚lc_user_post_id‘, $post_id );
}
add_action( ‚user_meta_after_user_register‘, ‚create_new_CPT_profile‘, 10, 1 );
[/php]
[/themify_is_logged_in]