WP_Customize_Manager::_render_custom_logo_partial PHP Method

_render_custom_logo_partial() public method

This method exists because the partial object and context data are passed into a partial's render_callback so we cannot use get_custom_logo() as the render_callback directly since it expects a blog ID as the first argument. When WP no longer supports PHP 5.3, this method can be removed in favor of an anonymous function.
See also: WP_Customize_Manager::register_controls()
Since: 4.5.0
public _render_custom_logo_partial ( ) : string
return string Custom logo.
    public function _render_custom_logo_partial()
    {
        return get_custom_logo();
    }
WP_Customize_Manager