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