filtrod 4.5.3
pre_oembed_result
Opis — z kodu źródłowego
Filters the oEmbed result before any HTTP requests are made.
This allows one to short-circuit the default logic, perhaps by replacing it with a routine that is more optimal for your setup. Returning a non-null value from the filter will effectively short-circuit retrieval and return the passed value instead.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$result | null | string | The UNSANITIZED (and potentially unsafe) HTML that should be used to embed. Default null to continue retrieving the result. |
$url | string | The URL to the content that should be attempted to be embedded. |
$args | string | array | Optional. Additional arguments for retrieving embed HTML. See wp_oembed_get() for accepted arguments. Default empty. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'pre_oembed_result', 'twoja_funkcja', 10, 3 );
function twoja_funkcja($param_1, $param_2, $param_3) {
// Twój kod
}
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'pre_oembed_result', 'twoja_funkcja', 10, 3 );
function twoja_funkcja($param_1, $param_2, $param_3) {
// Twój kod
}Popularne w tej kategorii