WordPress排队脚本-jQuery
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WordPress排队脚本-jQuery相关的知识,希望对你有一定的参考价值。
Snippet for adding to your functions.php file to enqueue jQuery.
<?php function my_init_method() { if( !is_admin() ) { wp_enqueue_script( 'jquery' ); } } add_action('init', 'my_init_method'); ?>
以上是关于WordPress排队脚本-jQuery的主要内容,如果未能解决你的问题,请参考以下文章
markdown 在WordPress中使用jQuery代码片段
在 Wordpress 插件中排队 Javascript 和 jQuery