Remove an unnecessary function_exists() call which was included in the oEmbed feature plugin for compatibility with WordPress < 4.3.

See #32522

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


git-svn-id: http://core.svn.wordpress.org/trunk@35052 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
John Blackbourn 2015-10-12 22:54:24 +00:00
parent 1a04fde012
commit 993d5c1c4b
2 changed files with 2 additions and 6 deletions

View File

@ -123,11 +123,7 @@ if ( have_posts() ) :
<div class="wp-embed-footer">
<div class="wp-embed-site-title">
<?php
$site_icon_url = admin_url( 'images/w-logo-blue.png' );
if ( function_exists( 'get_site_icon_url' ) ) {
$site_icon_url = get_site_icon_url( 32, $site_icon_url );
}
$site_icon_url = get_site_icon_url( 32, admin_url( 'images/w-logo-blue.png' ) );
/**
* Filters the site icon URL for use in the embed template.

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.4-alpha-35086';
$wp_version = '4.4-alpha-35087';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.