Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_generator_type

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
4618  */
4619 function wp_generator() {
4620      /**
4621       * Filters the output of the XHTML generator tag.
4622       *
4623       * @since 2.5.0
4624       *
4625       * @param string $generator_type The XHTML generator.
4626       */
4627      the_generator( apply_filters( 'wp_generator_type', 'xhtml' ) );
4628 }
4629
4630 /**
4631  * Display the generator XML or Comment for RSS, ATOM, etc.
4632  *
4633  * Returns the correct generator type for the requested output format. Allows
4634  * for a plugin to filter generators overall the {@see 'the_generator'} filter.
4635  *
4636  * @since 2.5.0