Docs: Document the usage of `$wp_embed` global in `WP_oEmbed_Controller::get_proxy_item()`.
Follow-up to [48135]. Fixes #52628. Built from https://develop.svn.wordpress.org/trunk@51151 git-svn-id: http://core.svn.wordpress.org/trunk@50760 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
aba17cd9ea
commit
6276e68c6c
|
@ -159,10 +159,14 @@ final class WP_oEmbed_Controller {
|
||||||
* @since 4.8.0
|
* @since 4.8.0
|
||||||
*
|
*
|
||||||
* @see WP_oEmbed::get_html()
|
* @see WP_oEmbed::get_html()
|
||||||
|
* @global WP_Embed $wp_embed
|
||||||
|
*
|
||||||
* @param WP_REST_Request $request Full data about the request.
|
* @param WP_REST_Request $request Full data about the request.
|
||||||
* @return object|WP_Error oEmbed response data or WP_Error on failure.
|
* @return object|WP_Error oEmbed response data or WP_Error on failure.
|
||||||
*/
|
*/
|
||||||
public function get_proxy_item( $request ) {
|
public function get_proxy_item( $request ) {
|
||||||
|
global $wp_embed;
|
||||||
|
|
||||||
$args = $request->get_params();
|
$args = $request->get_params();
|
||||||
|
|
||||||
// Serve oEmbed data from cache if set.
|
// Serve oEmbed data from cache if set.
|
||||||
|
@ -195,8 +199,6 @@ final class WP_oEmbed_Controller {
|
||||||
|
|
||||||
if ( false === $data ) {
|
if ( false === $data ) {
|
||||||
// Try using a classic embed, instead.
|
// Try using a classic embed, instead.
|
||||||
global $wp_embed;
|
|
||||||
|
|
||||||
/* @var WP_Embed $wp_embed */
|
/* @var WP_Embed $wp_embed */
|
||||||
$html = $wp_embed->get_embed_handler_html( $args, $url );
|
$html = $wp_embed->get_embed_handler_html( $args, $url );
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.8-beta1-51150';
|
$wp_version = '5.8-beta1-51151';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue