filtrod 6.8.0
is_post_embeddable
Opis — z kodu źródłowego
Filter whether a post is embeddable.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$is_embeddable | bool | Whether the post is embeddable. |
$post | \WP_Post | Post object. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'is_post_embeddable', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'is_post_embeddable', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}Popularne w tej kategorii