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
4249  */
4250 function wp_generator() {
4251      /**
4252       * Filters the output of the XHTML generator tag.
4253       *
4254       * @since 2.5.0
4255       *
4256       * @param string $generator_type The XHTML generator.
4257       */
4258      the_generator( apply_filters( 'wp_generator_type', 'xhtml' ) );
4259 }
4260
4261 /**
4262  * Display the generator XML or Comment for RSS, ATOM, etc.
4263  *
4264  * Returns the correct generator type for the requested output format. Allows
4265  * for a plugin to filter generators overall the {@see 'the_generator'} filter.
4266  *
4267  * @since 2.5.0