PHP 在WordPress中加载JavaScript库

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 在WordPress中加载JavaScript库相关的知识,希望对你有一定的参考价值。

if ( !is_admin() ) { // instruction to only load if it is not the admin area
  // LOAD JQUERY   
  wp_enqueue_script('jquery');

  // LOAD EXTERNAL LIBRARY
  wp_enqueue_script('jquery-ext', 'http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js');
}

以上是关于PHP 在WordPress中加载JavaScript库的主要内容,如果未能解决你的问题,请参考以下文章

PHP 在WordPress中加载JavaScript库

如何在functions.php(wordpress)中加载引导脚本和样式?

PHP jQuery在WordPress中加载最新版本

php 如何在WordPress中加载Font Awesome 5

PHP 在Wordpress生成的页面中加载Javascript库

jQuery插件未在WordPress中加载