Description
The wpdm_login_form_html filter allows you to modify or append custom HTML inside the login form.
Parameters
One parameter is passed to this hook.
Usage
<?php add_filter('wpdm_login_form_html', 'my_wpdm_login_form_html', 10, 1); ?>
Examples
<?php
add_filter('wpdm_login_form_html', 'my_wpdm_login_form_html', 10, 1);
function my_wpdm_login_form_html($content) {
$content .= '<p class="custom-msg">Welcome to the login page!</p>';
return $content;
}
?>