Ok, um das erste Problem kümmere ich mich in Ruhe später. Das drängt erstmal nicht so sehr.
Hier die ersten Zeilen. Statt "object." steht in der ersten Zeile des Editors allerdings "NUL NUL NUL NUL NUL ...".
object.
* @Param string $redirect_to Redirect destination URL.
*/
$errors = apply_filters( 'wp_login_errors', $errors, $redirect_to );
// Clear any stale cookies.
if ( $reauth )
wp_clear_auth_cookie();
login_header(__('Log In'), '', $errors);
if ( isset($_POST['log']) )
$user_login = ( 'incorrect_password' == $errors->get_error_code() || 'empty_password' == $errors->get_error_code() ) ? esc_attr(wp_unslash($_POST['log'])) : '';
$rememberme = ! empty( $_POST['rememberme'] );
if ( ! empty( $errors->errors ) ) {
$aria_describedby_error = ' aria-describedby="login_error"';
} else {
$aria_describedby_error = '';
}
?>