WP HOOKS
filtrod 3.6.0

search_form_format

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

Opis — z kodu źródłowego

Filters the HTML format of the search form.

Parametry

ParametrTypOpis
$formatstringThe type of markup to use in the search form. Accepts 'html5', 'xhtml'.
$argsarrayThe array of arguments for building the search form. See get_search_form() for information on accepted arguments.

Wywołanie

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

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

Popularne w tej kategorii