WP HOOKS
filtrod 4.5.3

pre_oembed_result

Args 3Plik wp-includes/class-wp-oembed.phpDokumentacja WP ↗

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

ParametrTypOpis
$resultnull | stringThe UNSANITIZED (and potentially unsafe) HTML that should be used to embed. Default null to continue retrieving the result.
$urlstringThe URL to the content that should be attempted to be embedded.
$argsstring | arrayOptional. 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
}

Popularne w tej kategorii