Вам нужно использовать custom
введите не text
, а first_name
function add_tml_registration_form_fields() {
tml_add_form_field( 'register', 'custom_1', array(
'type' => 'custom',
'label' => 'First Name 1 ',
'value' => tml_get_request_value( 'first_name_test', 'post' ),
'id' => 'first_name_test',
'priority' => 15,
) );
tml_add_form_field( 'register', 'custom_2', array(
'type' => 'custom',
'label' => 'Last Name 1',
'value' => tml_get_request_value( 'last_name_test', 'post' ),
'id' => 'last_name_test',
'priority' => 15,
) );
}
add_action( 'init', 'add_tml_registration_form_fields' );
Прочитайте это
https://docs.thememylogin.com/article/104-function-tmladdformfield