WP_Customize_Manager::customize_preview_loading_style()publicWP 4.2.0

Prints CSS for loading indicators for the Customizer preview.

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

Хуков нет.

Возвращает

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

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

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

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

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

Код WP_Customize_Manager::customize_preview_loading_style() WP 6.5.2

<?php
public function customize_preview_loading_style() {
	?>
	<style>
		body.wp-customizer-unloading {
			opacity: 0.25;
			cursor: progress !important;
			-webkit-transition: opacity 0.5s;
			transition: opacity 0.5s;
		}
		body.wp-customizer-unloading * {
			pointer-events: none !important;
		}
		form.customize-unpreviewable,
		form.customize-unpreviewable input,
		form.customize-unpreviewable select,
		form.customize-unpreviewable button,
		a.customize-unpreviewable,
		area.customize-unpreviewable {
			cursor: not-allowed !important;
		}
	</style>
	<?php
}