'A short description of this field', 'label' => __( 'My Custom Field Label', 'my-text-domain' ), 'required' => false, // if you want this field to be required, switch to "true" 'type' => 'text', // accepts any valid HTML5 input type, note that we don't have support for textareas or select elements! ); return $fields; } add_filter( 'lifterlms_get_user_custom_fields', 'my_custom_user_fields', 10, 1 );