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:
Drew Jaynes 2015-10-08 22:38:25 +00:00
parent 77314454a5
commit e4164932dd
2 changed files with 5 additions and 3 deletions

View File

@ -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;

View File

@ -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.