javascript – 如何在WordPress主题中包含jQuery?

前端之家收集整理的这篇文章主要介绍了javascript – 如何在WordPress主题中包含jQuery?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我是wordpress的新手,我正在弄清楚如何将jQuery包含到主题中.

我在functions.PHP主题中创建了以下函数

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?

如果您需要添加依赖于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' );

?>

请注意,wordpressno 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
});
原文链接:https://www.f2er.com/jquery/428740.html

猜你在找的jQuery相关文章