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
3086  */
3087 function wp_generator() {
3088      /**
3089       * Filter the output of the XHTML generator tag.
3090       *
3091       * @since 2.5.0
3092       *
3093       * @param string $generator_type The XHTML generator.
3094       */
3095      the_generator( apply_filters( 'wp_generator_type', 'xhtml' ) );
3096 }
3097
3098 /**
3099  * Display the generator XML or Comment for RSS, ATOM, etc.
3100  *
3101  * Returns the correct generator type for the requested output format. Allows
3102  * for a plugin to filter generators overall the the_generator filter.
3103  *
3104  * @since 2.5.0