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