Description
Filters the generated HTML of the login widget’s login form.
Parameters
$html
(string)(required) The HTML for the login widget form
Useage
add_filter( 'wpmem_login_widget_form', 'my_login_widget_form' );
function my_login_widget_form( $html ) {
// $html is a string of HTML for the form.
// Do what you need to do to change it and return the result.
return $html;
}Changelog
Introduced in 3.3.9
Source
wpmem_login_widget_form is located in includes/class-wp-members-widget.php