Я намагався запустити спеціальний .js-файл у своєму дочірньому каталозі тем.
У function.php теми моєї дитини я знаходжу наступний код
/* After this. you can override Accessible Zen's pluggable functions or add your own.
* Remember, do your best to stay accessible! :)
*
*/
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles() {
wp_enqueue_script( 'custom-script.js', 'js/custom-script.js', array('jquery') );
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style', get_stylesheet_uri(), array( 'parent-style' ) );
}
де тільки ця частина була реалізована мною і повинна завантажувати мій custom.script.js з папки js /
wp_enqueue_script( 'custom-script.js', 'js/custom-script.js', array('jquery') );
На жаль, це не так, чи може хтось допомогти?
* Оновлення 2
Код зараз виглядає так, і він працює, він не працював, коли я просто додав функцію до іншого додавання. Дякую всім за допомогу! І все-таки мені цікаво, чи не існує способу трохи скоротити цей код.
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style', get_stylesheet_uri(), array( 'parent-style' ) );
}
/*add my custom jquery script*/
add_action( 'wp_enqueue_scripts', 'menu_scripts' );
function menu_scripts() {
wp_enqueue_script( 'responsive-menu', get_bloginfo( 'stylesheet_directory' ) . '/js/responsive-menu.js', array( 'jquery' ), '1.0.0' );
wp_enqueue_script(
'custom-script',
get_stylesheet_directory_uri() . '/js/custom-script.js',
array( 'jquery' )
);
}
Для чого цей рядок?
wp_enqueue_script( 'responsive-menu', get_bloginfo( 'stylesheet_directory' ) . '/js/responsive-menu.js', array( 'jquery' ), '1.0.0' );
Чи потрібно?
@Pieter Я адаптував вашу зміну, але вона все ще не працює. Це те, що я маю у своєму .js-файлі, і він працює, якщо я розміщую його безпосередньо у page.php, наприклад: <script> if (jQuery) {alert ("Бібліотека jQuery завантажена!"); } else {alert ("Бібліотека jQuery не знайдена!"); } </script>
—
MrKainig
@Pieter Гаразд Я поставив код у питанні
—
MrKainig
Видаліть теги сценарію зі свого файлу js
—
Pieter Goosen
wp_enqueue_script( 'custom-script.js', get_stylesheet_directory_uri() . 'js/custom-script.js', array('jquery') );