Summery Summery
Retrieves the oEmbed endpoint URL for a given permalink.
Syntax Syntax
Description Description
Pass an empty string as the first argument to get the endpoint base URL.
Parameters Parameters
- $permalink
-
(Optional) The permalink used for the
urlquery arg.Default value: ''
- $format
-
(Optional) The requested response format. Default 'json'.
Default value: 'json'
Return Return
(string) The oEmbed endpoint URL.
Source Source
File: wp-includes/embed.php
if ( '' !== $permalink ) {
$url = add_query_arg(
array(
'url' => urlencode( $permalink ),
'format' => ( 'json' !== $format ) ? $format : false,
),
$url
);
}
/**
* Filters the oEmbed endpoint URL.
*
* @since 4.4.0
*
* @param string $url The URL to the oEmbed endpoint.
* @param string $permalink The permalink used for the `url` query arg.
* @param string $format The requested response format.
*/
return apply_filters( 'oembed_endpoint_url', $url, $permalink, $format );
}
/**
* Retrieves the embed code for a specific post.
Advertisement
Changelog Changelog
| Version | Description |
|---|---|
| 4.4.0 | Introduced. |