Embeds: Fix syntax on instantiating a new WP_oEmbed_Controller instance and cross-reference in the DocBlock for wp_oembed_parse_query().

See #34227.

Built from https://develop.svn.wordpress.org/trunk@34969


git-svn-id: http://core.svn.wordpress.org/trunk@34934 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes
2015-10-08 22:40:24 +00:00
parent f21439cc64
commit fa3b23dc0d
2 changed files with 4 additions and 2 deletions

View File

@@ -332,10 +332,12 @@ function wp_embed_handler_video( $matches, $attr, $url, $rawattr ) {
*
* @since 4.4.0
*
* @see WP_oEmbed_Controller
*
* @param WP_Query $wp_query The current WP_Query instance.
*/
function wp_oembed_parse_query( $wp_query ) {
$controller = new WP_oEmbed_Controller;
$controller = new WP_oEmbed_Controller();
$controller->parse_query( $wp_query );
}