我想在functions.php中包含引导程序文件(外部链接),但它不起作用。
我的代码:
function insert_scripts() {
wp_deregister_script('stclare1');
wp_register_script('stclare1', 'https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js', false, '3.3.4');
wp_enqueue_script('stclare1');
}
add_action('admin_enqueue_scripts', 'insert_scripts');
什么事?
答案 0 :(得分:0)
如果您尝试在主题中使用脚本,请使用
add_action( 'wp_enqueue_scripts', 'insert_scripts' );
以上(您的版本)排入管理部分
答案 1 :(得分:0)
这是我的错:
function insert_scripts() {
wp_deregister_style('stclare1');
wp_register_style('stclare1', 'https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css', false, '');
wp_enqueue_style('stclare1');
}
add_action('admin_enqueue_scripts', 'insert_scripts');

我包含了我在bootstrap网站上找到的.js文件。现在我用.css文件替换了.js文件,并将" _script" -part更改为" _style"。