wp_generator

The timeline below displays how wordpress function wp_generator has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 4.6

/**
 * Displays the XHTML generator that is generated on the wp_head hook.
 *
 * See {@see 'wp_head'}.
 *
 * @since 2.5.0
 */
function wp_generator()
{
    /**
     * Filters the output of the XHTML generator tag.
     *
     * @since 2.5.0
     *
     * @param string $generator_type The XHTML generator.
     */
    the_generator(apply_filters('wp_generator_type', 'xhtml'));
}

WordPress Version: 3.9

/**
 * Display the XHTML generator that is generated on the wp_head hook.
 *
 * @since 2.5.0
 */
function wp_generator()
{
    /**
     * Filter the output of the XHTML generator tag.
     *
     * @since 2.5.0
     *
     * @param string $generator_type The XHTML generator.
     */
    the_generator(apply_filters('wp_generator_type', 'xhtml'));
}

WordPress Version: 3.7

/**
 * Display the XHTML generator that is generated on the wp_head hook.
 *
 * @since 2.5.0
 */
function wp_generator()
{
    the_generator(apply_filters('wp_generator_type', 'xhtml'));
}