Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: shake_error_codes

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
45      // Shake it!
46      $shake_error_codes = array( 'empty_password', 'empty_email', 'invalid_email', 'invalidcombo', 'empty_username', 'invalid_username', 'incorrect_password' );
47      /**
48       * Filters the error codes array for shaking the login form.
49       *
50       * @since 3.0.0
51       *
52       * @param array $shake_error_codes Error codes that shake the login form.
53       */
54      $shake_error_codes = apply_filters( 'shake_error_codes', $shake_error_codes );
55
56      if ( $shake_error_codes && $wp_error->get_error_code() && in_array( $wp_error->get_error_code(), $shake_error_codes ) )
57           add_action( 'login_head', 'wp_shake_js', 12 );
58
59      $separator = is_rtl() ? ' › ' : ' ‹ ';
60
61      ?><!DOCTYPE html>
62      <!--[if IE 8]>
63           <html xmlns="http://www.w3.org/1999/xhtml" class="ie8" <?php language_attributes(); ?>>