wp_shake_js()WP 3.0.0

Outputs the JavaScript to handle the form shaking on the login page.

Хуков нет.

Возвращает

null. Ничего.

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

wp_shake_js();

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

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

Код wp_shake_js() WP 6.1.1

<?php
function wp_shake_js() {
	?>
	<script type="text/javascript">
	document.querySelector('form').classList.add('shake');
	</script>
	<?php
}