Loading jquery locally

时间:2018-02-26 作者:Martin

除了通过链接加载jquery,还有其他方法吗:

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.1/jquery.min.js"></script>
我试过这个:

<?php wp_enqueue_script("jquery"); ?>

<?php wp_head(); ?>
但是当我使用wp\\u enqueue\\u脚本(“jquery”)时,本地wordpress主页(带有xampp)会返回NULL值

1 个回复
最合适的回答,由SO网友:Morgan Estes 整理而成

虽然看起来您应该能够调用函数并让它加载脚本,但它稍微复杂一些。相反,脚本需要在挂钩中注册和排队,以便按正确的顺序加载。

要在主题前端加载jQuery,请将函数调用包装在wp_enqueue_scripts 行动一种方法是将其添加到主题中functions.php 文件:

add_action( \'wp_enqueue_scripts\', function () { wp_enqueue_script( \'jquery\' ); } );
请参见https://developer.wordpress.org/reference/functions/wp_enqueue_script/#notes 了解更多信息。

结束