将Javascript Sly添加到Wordpress

问题描述 投票:0回答:1

有没有办法在Wordpress网站上获得“狡猾”(这个javascript插件:http://darsa.in/sly/)?我真的很喜欢它,但我找不到把它放在wordpress网站的方法。或许你知道一些非常相似的东西吗?

wordpress plugins slider slideshow
1个回答
1
投票

你可以下载你的script.js。将你的script.js放入你的主题文件夹的js文件中,然后你就可以将你的js文件排入队列:

function new_scripts() {
wp_register_script('my_new_script', get_template_directory_uri() . '/js/new_script.js', array('jquery'),'1.1', true);
wp_enqueue_script('my_new_script');
}

add_action( 'wp_enqueue_scripts', 'new_scripts' );  

你可以在这里阅读更多:https://developer.wordpress.org/reference/functions/wp_enqueue_script/

© www.soinside.com 2019 - 2024. All rights reserved.