WP_Customize_Manager::_render_custom_logo_partial()publicWP 4.5.0

Callback for rendering the custom logo, used in the custom_logo partial.

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.

Метод класса: WP_Customize_Manager{}

Хуков нет.

Возвращает

Строку. Custom logo.

Использование

$WP_Customize_Manager = new WP_Customize_Manager();
$WP_Customize_Manager->_render_custom_logo_partial();

Заметки

Список изменений

С версии 4.5.0 Введена.

Код WP_Customize_Manager::_render_custom_logo_partial() WP 6.4.3

public function _render_custom_logo_partial() {
	return get_custom_logo();
}