Make WordPress Core

Changeset 47838 for trunk


Ignore:
Timestamp:
05/21/2020 09:08:52 AM (5 years ago)
Author:
SergeyBiryukov
Message:

Customize: Move the WordPress logo with a white background to the wp-includes directory.

This ensures that the image used as a default site icon looks good on a dark background.

The image was previously changed in the wp-admin directory, but the site icon is now loaded from wp-includes.

Follow-up to [36635], [47018], [47564], [47832].

Props ocean90.
Fixes #49798.

Location:
trunk/src
Files:
2 edited
1 copied

Legend:

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

    r47832 r47838  
    16691669    do_action( 'do_faviconico' );
    16701670
    1671     wp_redirect( get_site_icon_url( 32, includes_url( 'images/w-logo-blue.png' ) ) );
     1671    wp_redirect( get_site_icon_url( 32, includes_url( 'images/w-logo-blue-white-bg.png' ) ) );
    16721672    exit;
    16731673}
Note: See TracChangeset for help on using the changeset viewer.