Make WordPress Core


Ignore:
Timestamp:
03/03/2016 07:55:15 PM (9 years ago)
Author:
obenland
Message:

Customize: Site logos are custom logos.

Brings the nomenclature closer to custom headers and backgrounds.

See https://wordpress.slack.com/archives/core/p1456955151003150
See #35945.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/customize/class-wp-customize-site-logo-control.php

    r36698 r36837  
    11<?php
    22/**
    3  * Customize API: WP_Customize_Site_Logo_Control class
     3 * Customize API: WP_Customize_Custom_Logo_Control class
    44 *
    55 * @package WordPress
     
    99
    1010/**
    11  * Customize Site Logo control class.
     11 * Customize custom logo control class.
    1212 *
    1313 * Used only for custom functionality in JavaScript.
     
    1717 * @see WP_Customize_Image_Control
    1818 */
    19 class WP_Customize_Site_Logo_Control extends WP_Customize_Image_Control {
     19class WP_Customize_Custom_Logo_Control extends WP_Customize_Image_Control {
    2020
    2121    /**
     
    2626     * @var string
    2727     */
    28     public $type = 'site_logo';
     28    public $type = 'custom_logo';
    2929
    3030    /**
Note: See TracChangeset for help on using the changeset viewer.