wp_generator()

Displays the XHTML generator that is generated on the wp_head hook.


Description

See ‘wp_head’.


Source

File: wp-includes/general-template.php

function wp_generator() {
	/**
	 * Filters the output of the XHTML generator tag.
	 *
	 * @since WP-2.5.0
	 *
	 * @param string $generator_type The XHTML generator.
	 */
	the_generator( apply_filters( 'wp_generator_type', 'xhtml' ) );
}


Changelog

Changelog
Version Description
WP-2.5.0 Introduced.