wpmu_activate_stylesheet()WP 3.0.0

Loads styles specific to this page.

Хуков нет.

Возвращает

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

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

wpmu_activate_stylesheet();

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

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

Код wpmu_activate_stylesheet() WP 6.4.3

<?php
function wpmu_activate_stylesheet() {
	?>
	<style type="text/css">
		.wp-activate-container { width: 90%; margin: 0 auto; }
		.wp-activate-container form { margin-top: 2em; }
		#submit, #key { width: 100%; font-size: 24px; box-sizing: border-box; }
		#language { margin-top: 0.5em; }
		.wp-activate-container .error { background: #f66; color: #333; }
		span.h3 { padding: 0 8px; font-size: 1.3em; font-weight: 600; }
	</style>
	<?php
}