WP_Customize_Widgets::print_preview_css()publicWP 3.9.0

Inserts default style for highlighted widget at early point so theme stylesheet can override.

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

Хуков нет.

Возвращает

null. Ничего (null).

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

$WP_Customize_Widgets = new WP_Customize_Widgets();
$WP_Customize_Widgets->print_preview_css();

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

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

Код WP_Customize_Widgets::print_preview_css() WP 6.5.2

<?php
public function print_preview_css() {
	?>
	<style>
	.widget-customizer-highlighted-widget {
		outline: none;
		-webkit-box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
		box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
		position: relative;
		z-index: 1;
	}
	</style>
	<?php
}