我想在我的wordpress主题中嵌入jquery.corner.js,但我没有运气......
将此脚本嵌入wordpress主题并使用它的正确方法是什么?
这是脚本的网址,以防万一:http://www.malsup.com/jquery/corner/
谢谢! :)
答案 0 :(得分:0)
您应该使用wp_register_script
和wp_enqueue_script
。将文件添加到主题文件夹。
function include_jquery_corner(){
wp_register_script( 'jq_corner', get_template_directory_uri() . 'PATH TO YOUR JS FILE' );
wp_enqueue_script( 'jq_corner' );
}
add_action( 'wp_enqueue_scripts', 'include_jquery_corner' );