pre_oembed_result
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.
Использование
add_filter( 'pre_oembed_result', 'wp_kama_pre_oembed_result_filter', 10, 3 );
/**
* Function for `pre_oembed_result` filter-hook.
*
* @param null|string $result The UNSANITIZED (and potentially unsafe) HTML that should be used to embed.
* @param string $url The URL to the content that should be attempted to be embedded.
* @param string|array $args Optional. Additional arguments for retrieving embed HTML. See wp_oembed_get() for accepted arguments.
*
* @return null|string
*/
function wp_kama_pre_oembed_result_filter( $result, $url, $args ){
// filter...
return $result;
}
- $result(null|строка)
- The UNSANITIZED (and potentially unsafe) HTML that should be used to embed.
По умолчанию: null to continue retrieving the result - $url(строка)
- The URL to the content that should be attempted to be embedded.
- $args(строка|массив)
- Optional. Additional arguments for retrieving embed HTML. See wp_oembed_get() for accepted arguments.
По умолчанию: ''
Список изменений
| С версии 4.5.3 | Введена. |
Где вызывается хук
pre_oembed_result
wp-includes/class-wp-oembed.php 408
$pre = apply_filters( 'pre_oembed_result', null, $url, $args );
Где используется хук в WordPress
wp-includes/default-filters.php 740
add_filter( 'pre_oembed_result', 'wp_filter_pre_oembed_result', 10, 3 );