filtrod 4.0.0
run_wptexturize
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
| Parametr | Typ | Opis |
|---|---|---|
$run_texturize | bool | Whether 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
}
// rejestracja funkcji zwrotnej
add_filter( 'run_wptexturize', 'twoja_funkcja' );
function twoja_funkcja($param_1) {
// Twój kod
}Popularne w tej kategorii