the_generator filter-hookWP 2.5.0

Filters the output of the XHTML generator tag for display.

Usage

add_filter( 'the_generator', 'wp_kama_the_generator_filter', 10, 2 );

/**
 * Function for `the_generator` filter-hook.
 * 
 * @param string $generator_type The generator output.
 * @param string $type           The type of generator to output. Accepts 'html', 'xhtml', 'atom', 'rss2', 'rdf', 'comment', 'export'.
 *
 * @return string
 */
function wp_kama_the_generator_filter( $generator_type, $type ){

	// filter...
	return $generator_type;
}
$generator_type(string)
The generator output.
$type(string)
The type of generator to output. Accepts 'html', 'xhtml', 'atom', 'rss2', 'rdf', 'comment', 'export'.

Changelog

Since 2.5.0 Introduced.

Where the hook is called

the_generator()
the_generator
wp-includes/general-template.php 4963
echo apply_filters( 'the_generator', get_the_generator( $type ), $type ) . "\n";

Where the hook is used in WordPress

Usage not found.