Description
This filter hook allows you to change the message that is displayed in the sidebar when a user’s login fails. The generated html string comes to the filter and can be changed or appended to.
NOTE: Unlike the wpmem_login_failed filter, the string sent to this filter does NOT include the formatting tags.
Usage
add_filter( 'wpmem_login_failed_sb', 'my_sb_login_failed_msg' );
function my_sb_login_failed_msg( $str )
{
// The generated html for the login failed message
// is passed to this filter as $str and does NOT
// include the formatting tags. You can change
// it or append to it.
return $str;
}See a list of all filter and action hooks