我不能在我的 wordpress 主题中包含 javaScript
I can not include javaScript to my wordpress theme
我还通过 function.php 添加了 css 文件,但它工作正常
这是我 functions.php
上的代码
function cp_theme_script(){
wp_enqueue_script('bootstrap_js', get_template_directory_uri().'/resources/bootstrap.js',array('jquery'),'',true);
}
add_action('wp_enqueue_scripts', 'cp_theme_script');
add_action('wp_enqueue_scripts', 'load_javascript_files');
function load_javascript_files() {
wp_register_script('bootstrap_js', get_template_directory_uri() . 'resources/bootstrap', array('jquery'), true );
wp_enqueue_script('bootstrap_js');
}
试试这个代码?
我还通过 function.php 添加了 css 文件,但它工作正常
这是我 functions.php
上的代码function cp_theme_script(){
wp_enqueue_script('bootstrap_js', get_template_directory_uri().'/resources/bootstrap.js',array('jquery'),'',true);
}
add_action('wp_enqueue_scripts', 'cp_theme_script');
add_action('wp_enqueue_scripts', 'load_javascript_files');
function load_javascript_files() {
wp_register_script('bootstrap_js', get_template_directory_uri() . 'resources/bootstrap', array('jquery'), true );
wp_enqueue_script('bootstrap_js');
}
试试这个代码?