b3_add_first_last_name_fields()

Description

This hook is used to add first and last name fields to a registration form.

You can also use this hook to add your own output to a registration form. See example.

Usage

  1. function b3_after_first_last() {
  2.     echo 'Your output';
  3. }
  4. add_action( 'b3_add_first_last_name_fields', 'b3_after_first_last' );

Used in

Tags