Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: sanitize_html_class

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
2339      /**
2340       * Filters a sanitized HTML class string.
2341       *
2342       * @since 2.8.0
2343       *
2344       * @param string $sanitized The sanitized HTML class.
2345       * @param string $class     HTML class before sanitization.
2346       * @param string $fallback  The fallback string.
2347       */
2348      return apply_filters( 'sanitize_html_class', $sanitized, $class, $fallback );
2349 }
2350
2351 /**
2352  * Converts lone & characters into `&` (a.k.a. `&`)
2353  *
2354  * @since 0.71
2355  *
2356  * @param string $content    String of characters to be converted.
2357  * @param string $deprecated Not used.