b3_add_extra_fields_registration()

Description

This hook is used to add extra fields, added to the registration form with the filter b3_extra_fields.

It is outputted just before the privacy checkbox on both forms.

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

Usage

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

Used in

Tags