mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-01 21:21:24 +01:00
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:
parent
1a04fde012
commit
993d5c1c4b
@ -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.
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user