diff --git a/wp-includes/class-wp-customize-manager.php b/wp-includes/class-wp-customize-manager.php index 9a13b6d9a2..370ebdddcd 100644 --- a/wp-includes/class-wp-customize-manager.php +++ b/wp-includes/class-wp-customize-manager.php @@ -1975,10 +1975,10 @@ final class WP_Customize_Manager { ), ) ) ); - $this->selective_refresh->add_partial( 'site_logo', array( - 'settings' => array( 'site_logo' ), - 'selector' => '.site-logo-link', - 'render_callback' => array( $this, '_render_site_logo_partial' ), + $this->selective_refresh->add_partial( 'custom_logo', array( + 'settings' => array( 'custom_logo' ), + 'selector' => '.custom-logo-link', + 'render_callback' => array( $this, '_render_custom_logo_partial' ), 'container_inclusive' => true, ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index db87182f35..8ea4888d09 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-beta4-37065'; +$wp_version = '4.5-beta4-37066'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.