你能帮助我吗,我在哪里找到jQuery手风琴的javascript代码在wordpress中的正确位置,我写的,我应该把它放到file.js并通过function.php,wp_register,wp_enqueue,add_item中的函数调用?我是这个系统的新手。非常感谢你的帮助
答案 0 :(得分:0)
要向您的网站添加自定义JavaScript,您应该查看wp_enqueue_script功能。
您可以在主题的functions.php或您创建的插件文件中使用它,具体取决于您是否希望它成为主题的一部分。
以下示例来自上面链接的页面,并且还介绍了用于排队CSS的等效函数:
/**
* Proper way to enqueue scripts and styles
*/
function theme_name_scripts() {
wp_enqueue_style( 'style-name', get_stylesheet_uri() );
wp_enqueue_script( 'script-name', get_template_directory_uri() . '/js/example.js', array(), '1.0.0', true );
}
add_action( 'wp_enqueue_scripts', 'theme_name_scripts' );