将jQuery添加到Underscores(_s)WordPress主题的最佳方法是什么?

tho*_*ams 6 wordpress jquery wordpress-theming

这似乎是一个基本的东西,但我不确定如何将jQuery(使用CDN)添加 Underscores WordPress启动器主题.我做了一些搜索,但没有找到任何东西,所以我希望有人能在这里找到答案吗?

先感谢您!

Rah*_*zir 11

最好的方法是wp_enqueue_script()在Underscores创建的主题functions.php文件中使用Wordpress功能.

找到函数<THEME_NAME>_scripts(<THEME_NAME>从Underscores网站生成时,您的主题名称在哪里)并在<THEME_NAME>_scripts函数之前添加下面的代码(在任何其他之前wp_enqueue_script)

// deregister default jQuery included with Wordpress
wp_deregister_script( 'jquery' );

$jquery_cdn = '//ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js';
wp_enqueue_script( 'jquery', $jquery_cdn, array(), '2.2.4', true );
Run Code Online (Sandbox Code Playgroud)