有人能告诉我如何在使用twentyeleven主题的站点上启用引导程序吗?我按照启动引导的说明使用twentyfourteen theme 没有成功。
这是我在函数中上载的代码。我的twentyeleven子文件夹中的php:
<?php
add_action( \'wp_enqueue_scripts\', \'theme_enqueue_styles\' );
function theme_enqueue_styles() {
wp_enqueue_style( \'parent-style\', get_template_directory_uri() . \'/style.css\' );
}
function my_scripts_enqueue() {
wp_register_script( \'bootstrap-js\', \'://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js\', array(\'jquery\'), NULL, true );
wp_register_style( \'bootstrap-css\', \'://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css\', false, NULL, \'all\' );
wp_enqueue_script( \'bootstrap-js\' );
wp_enqueue_style( \'bootstrap-css\' );
}
add_action( \'wp_enqueue_scripts\', \'my_scripts_enqueue\' );
?>
上传文件后,我是否必须手动激活它?
EDIT:
我刚刚检查了我的源代码,发现我已经“启用”了引导。。。
http://mysite://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css“type=\'text/css\'media=\'all\'/>
明显的问题是样式表链接指向我的站点,而不是maxcdn。有人知道我怎么解决这个问题吗?
我想显而易见的答案是找到保存样式表和JS链接的文件,然后手动插入引导链接?
SO网友:ahmad araj
在代码中编写以下内容
<?php
add_action( \'wp_enqueue_scripts\', \'theme_enqueue_styles\' );
function theme_enqueue_styles() {
wp_enqueue_style( \'parent-style\', get_template_directory_uri() . \'/style.css\' );
}
function my_scripts_enqueue() {
wp_register_script( \'bootstrap-js\', \'https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js\', array(\'jquery\'), NULL, true );
wp_register_style( \'bootstrap-css\', \'https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css\', false, NULL, \'all\' );
wp_enqueue_script( \'bootstrap-js\' );
wp_enqueue_style( \'bootstrap-css\' );
}
add_action( \'wp_enqueue_scripts\', \'my_scripts_enqueue\' );
?>
它将下载您的文件