无法在Wordpress中加载js脚本

时间:2018-04-05 08:32:51

标签: javascript php wordpress

我尝试从自定义的Wordpress主题中获取js中的两个自定义脚本。 我在functions.php

中获得了以下代码
add_action( 'wp_enqueue_scripts', 'add_my_script' );
function add_my_script() {
   wp_register_script('html2Canvas',get_template_directory_uri() .'/js/html2canvas.js', array('jquery'),true);
   wp_register_script('CustomController',get_template_directory_uri() . '/js/CustomController.js', array('jquery','html2canvas'),true);
   wp_enqueue_script('html2Canvas');
   wp_enqueue_script('CustomController');
}

以下文件夹结构

<theme_folder>
 |- functions.php
 |-js
   |- html2canvas.js
   |- CustomController.js 
 |[...]

0 个答案:

没有答案