Всем привет!
Как добавить куски кода в вордпресс такого плана(не через админку)?
<script type="application/x-javascript">
addEventListener("load",function() { setTimeout(hideURLbar, 0); }, false);
function hideURLbar(){ window.scrollTo(0,1);}
</script>
<script type="text/javascript">
jQuery(document).ready(function($) {
$(".scroll").click(function(event){
event.preventDefault();
$('html,body').animate({scrollTop:$(this.hash).offset().top},1000);
});
});
</script>
Есть
<script>
куски и в футере и в хедере, как все правильно добавить ?
Обычные js файлы добавил в functions.php вот так (ниже) и они работают
wp_enqueue_script( 'bootstrap', get_template_directory_uri() . '/js/bootstrap.js');
wp_enqueue_script( 'easing', get_template_directory_uri() . '/js/easing.js');
wp_enqueue_script( 'jarallax', get_template_directory_uri() . '/js/jarallax.js');