Make WordPress Core


Ignore:
Timestamp:
10/12/2015 10:53:28 PM (9 years ago)
Author:
johnbillion
Message:

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

See #32522

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/embed-template.php

    r35086 r35087  
    124124                <div class="wp-embed-site-title">
    125125                    <?php
    126                     $site_icon_url = admin_url( 'images/w-logo-blue.png' );
    127 
    128                     if ( function_exists( 'get_site_icon_url' ) ) {
    129                         $site_icon_url = get_site_icon_url( 32, $site_icon_url );
    130                     }
     126                    $site_icon_url = get_site_icon_url( 32, admin_url( 'images/w-logo-blue.png' ) );
    131127
    132128                    /**
Note: See TracChangeset for help on using the changeset viewer.