filtrod 1.5.0
default_excerpt
Opis — z kodu źródłowego
Filters the default post excerpt initially used in the "Write Post" form.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$post_excerpt | string | Default post excerpt. |
$post | \WP_Post | Post object. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'default_excerpt', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'default_excerpt', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}Popularne w tej kategorii