wpdm_register_form
1 min read
Updated Jan 26, 2026
Description
If you want to add extra fields in Download Manager front end Register form, you can use this hook.
Parameters
No parameters are passed to this hook.
Usage
<?php add_action('wpdm_register_form','my_register_field'); ?>
Examples
<?php
add_action('wpdm_register_form','my_register_field');
function my_register_field() {
?>
<p class="form-group">
<label class="control-label" for="fb_id"><?php _e('Facebook Profile Link','wpdmpro'); ?></label>
<input class="form-control" required="required" type="text" tabindex="102" size="20" class="required" id="fb_id" value="" name="fb_id">
</p>
<?php
}
?>