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
2160           add_action( 'admin_head', '_thickbox_path_admin_subfolder' );
2161 }
2162
2163 /**
2164  * Display the XHTML generator that is generated on the wp_head hook.
2165  *
2166  * @since 2.5.0
2167  */
2168 function wp_generator() {
2169      the_generator( apply_filters( 'wp_generator_type', 'xhtml' ) );
2170 }
2171
2172 /**
2173  * Display the generator XML or Comment for RSS, ATOM, etc.
2174  *
2175  * Returns the correct generator type for the requested output format. Allows
2176  * for a plugin to filter generators overall the the_generator filter.
2177  *
2178  * @since 2.5.0