我是wordpress的新手,我正在弄清楚如何将jQuery包含到主题中.
function load_java_scripts() {
// Load FlexSlider JavaScript that handle the SlideShow:
wp_enqueue_script('jQuery-js','http://code.jquery.com/jquery.js',array(),'1.0',true);
}
add_action('wp_enqueue_scripts','load_java_scripts');
所以我认为我可以将其添加为其他一些JavaScript或CSS本地资源,但我不确定这种方法,因为在这种情况下,jquery.js不是本地资源,而是一个在线资源(是同样的事情吗?)
我也有一些疑问因为在网上搜索我找到了不同的方法来添加jQuery到我的主题,比如这个one.
你能给我一些关于如何正确完成这项任务的信息吗?
最佳答案
您是否有任何特定原因没有使用wordpress中的jQuery?
原文链接:https://www.f2er.com/jquery/428740.html如果您需要添加依赖于jQuery的JavaScript文件,可以将jQuery添加为dependency.
PHP
function my_scripts_method() {
wp_enqueue_script(
'custom-script',get_stylesheet_directory_uri() . '/js/custom_script.js',#your JS file
array( 'jquery' ) #dependencies
);
}
add_action( 'wp_enqueue_scripts','my_scripts_method' );
?>
请注意,wordpress在no conflict wrappers中加载jQuery.所以你的代码应该是这样的:
jQuery(document).ready(function($) {
// Inside of this function,$() will work as an alias for jQuery()
// and other libraries also using $will not be accessible under this shortcut
});