Remove another unnecessary `function_exists()` call.
See [35087] See #32522 Built from https://develop.svn.wordpress.org/trunk@35089 git-svn-id: http://core.svn.wordpress.org/trunk@35054 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
cffce78d35
commit
76b77ff4d1
|
@ -224,11 +224,7 @@ else :
|
|||
<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.
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.4-alpha-35088';
|
||||
$wp_version = '4.4-alpha-35089';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue