WP HOOKS
filtrod 4.0.0

run_wptexturize

Args 1Plik wp-includes/formatting.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters whether to skip running wptexturize().

Returning false from the filter will effectively short-circuit wptexturize() and return the original text passed to the function instead. The filter runs only once, the first time wptexturize() is called.

Parametry

ParametrTypOpis
$run_texturizeboolWhether to short-circuit wptexturize().

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej
add_filter( 'run_wptexturize', 'twoja_funkcja' );

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

Popularne w tej kategorii