WP HOOKS
filtrod 2.5.0

the_generator

Args 2Plik wp-includes/general-template.phpDokumentacja WP ↗

Opis

Zmienia lub usuwa meta generator (wersja WordPressa) — ukrycie go utrudnia ataki na znane luki.

Przykład użycia

add_filter( 'the_generator', ... )php
add_filter( 'the_generator', 'wpdocs_hide_generator' );

function wpdocs_hide_generator() {
	return '';
}

Parametry

ParametrTypOpis
$generator_typestringThe generator output.
$typestringThe type of generator to output. Accepts 'html', 'xhtml', 'atom', 'rss2', 'rdf', 'comment', 'export'.

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'the_generator', 'twoja_funkcja', 10, 2 );

function twoja_funkcja($param_1, $param_2) {
	// Twój kod
}

Popularne w tej kategorii