Мой код не видит jquery в wordpress,
на сайтах поискал как подключить,
подключил,
develope elements показывает в хеде кучу ссылок на что то там и на jquery, значит подключилось же?
мой файл js вставил после jquery,
но в консоле Uncaught TypeError: $ is not a function
Тема wordpress своя,
код js
$(document).ready(function() {
alert("fdgsdh")
}
)
код functions.php
<?php
function jquery_init() {
wp_enqueue_script("jquery");
wp_enqueue_script('newscript', get_template_directory_uri() . '/jj.js');
}
if(!is_admin()){
add_action('wp_enqueue_scripts', 'jquery_init');
}
?>