Skip to content

Instantly share code, notes, and snippets.

View shwetakotecharuparelia's full-sized avatar

shwetakotecharuparelia

View GitHub Profile
@hivepress
hivepress / functions.php
Created April 26, 2022 16:58
Add first and last name fields to the user registration form #hivepress #users
<?php
add_filter(
'hivepress/v1/forms/user_register',
function ( $form ) {
$form['fields'] = array_merge(
$form['fields'],
[
'first_name' => [
'required' => true,
'_order' => 1,