Home › Forums › Quform WordPress › help with date!!
I want to use date to insert in profile user. I have this code, but I have error for date!
function modify_contact_methods($profile_fields) {
// Add new fields $profile_fields[‘date’] = ‘Date of Submission’;
return $profile_fields; } add_filter(‘user_contactmethods’, ‘modify_contact_methods’);
function mytheme_register_wp_user($form) {
$date = $form-> getValue(‘iphorm_1_23’);
wp_insert_user(array( ‘date’ => $date
)); } add_action(‘iphorm_post_process_1’, ‘mytheme_register_wp_user’, 10, 1);
You don't have permission to view this content. Please log in or register and then verify your purchases to gain access.
THx a lot.