Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: term_search_min_chars

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
133      /**
134       * Filter the minimum number of characters required to fire a tag search via AJAX.
135       *
136       * @since 4.0.0
137       *
138       * @param int    $characters The minimum number of characters required. Default 2.
139       * @param object $tax        The taxonomy object.
140       * @param string $s          The search term.
141       */
142      $term_search_min_chars = (int) apply_filters( 'term_search_min_chars', 2, $tax, $s );
143
144      /*
145       * Require $term_search_min_chars chars for matching (default: 2)
146       * ensure it's a non-negative, non-zero integer.
147       */
148      if ( ( $term_search_min_chars == 0 ) || ( strlen( $s ) < $term_search_min_chars ) ){
149           wp_die();
150      }
151