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
function b3_add_extra_fields_registration() {
echo 'Your output';
}
add_action( 'b3_add_extra_fields_registration', 'b3_add_extra_fields_registration' );
Used in
- includes/actions-wp.php - line 13