возможно ли добавить anime.js в WordPress

#javascript #wordpress #anime.js

Вопрос:

Кто-нибудь знает, как добавить Anime.js скрипт в WordPress? Возможно ли это? Если да, то есть ли подключаемый модуль?

 function load_my_scripts() {
    wp_register_script('animejs', get_template_directory_uri() . "/js/anime.js", array(), '', true );
    wp_enqueue_script('animejs');
    wp_register_script('scriptjs', get_template_directory_uri() . "/js/script.js", array('animejs'), '', true );
    wp_enqueue_script('scriptjs');
}
add_action('init', 'load_my_scripts');
 

Ответ №1:

Это выполнимо! Вы могли enqueue бы это сделать с помощью wp_enqueue_script функции, вот так:

 add_action('wp_enqueue_scripts', 'your_them_function_to_load_files');

function your_them_function_to_load_files()
{
  wp_enqueue_script('handle_for_animejs', get_theme_file_uri('/js/anime.js'), '', "1.5", TRUE);
}
 

Код входит в functions.php вашу активную тему.

wp_enqueue_script Функция WordPress