wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



pre_oembed_result › WordPress Filter Hooks

Seit4.5.3
Veraltetn/v
apply_filters( 'pre_oembed_result', null, $url, $args )
Parameter: (3)
  • () result The UNSANITIZED (and potentially unsafe) HTML that should be used to embed. Default null to continue retrieving the result.
    Erforderlich: Ja
  • () url The URL to the content that should be attempted to be embedded.
    Erforderlich: Ja
  • () args Optional. Additional arguments for retrieving embed HTML. See wp_oembed_get() for accepted arguments. Default empty.
    Erforderlich: Ja
Definiert in:
Codex:

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.




Quellcode

$pre = apply_filters( 'pre_oembed_result', null, $url, $args );