Docs: Clarify the file header summary for wp-includes/embed-functions.php, and add missing parameter information for `wp_oembed_parse_query()`, introduced in [34903].
See #34227. Built from https://develop.svn.wordpress.org/trunk@34967 git-svn-id: http://core.svn.wordpress.org/trunk@34932 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
77314454a5
commit
e4164932dd
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
/**
|
||||
* WordPress API for embedding content.
|
||||
* oEmbed API: Top-level oEmbed functionality
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage oEmbed
|
||||
|
@ -328,9 +328,11 @@ function wp_embed_handler_video( $matches, $attr, $url, $rawattr ) {
|
|||
}
|
||||
|
||||
/**
|
||||
* Parse an oEmbed API query.
|
||||
* Parses an oEmbed API query.
|
||||
*
|
||||
* @since 4.4.0
|
||||
*
|
||||
* @param WP_Query $wp_query The current WP_Query instance.
|
||||
*/
|
||||
function wp_oembed_parse_query( $wp_query ) {
|
||||
$controller = new WP_oEmbed_Controller;
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.4-alpha-34966';
|
||||
$wp_version = '4.4-alpha-34967';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue