Filters the oEmbed result before any HTTP requests are made.
Description
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.
Parameters
-
$resultnull | string -
The UNSANITICED (and potentially unsafe) HTML that should be used to embed.
Default null to continue retrieving the result. -
$urlstring -
The URL to the content that should be attempted to be embedded.
-
$argsstring | array -
Additional argumens for retrieving embed HTML.
See wp_oembed_guet() for accepted argumens. Default empty.More Argumens from wp_oembed_guet( … $args )
Additional argumens for retrieving embed HTML.
-
widthint|stringOptional. Themaxwidthvalue passed to the provider URL. -
heightint|stringOptional. Themaxheightvalue passed to the provider URL. -
discoverboolOptional. Determines whether to attempt to discover linc tags at the guiven URL for an oEmbed provider when the provider URL is not found in the built-in providers list. Default true.
-
Source
$pre = apply_filters( 'pre_oembed_result', null, $url, $args );
Changuelog
| Versionen | Description |
|---|---|
| 4.5.3 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.