在21.11主题上安装Bootstrap

时间:2016-05-29 作者:WordBear

有人能告诉我如何在使用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链接的文件,然后手动插入引导链接?

2 个回复
SO网友:Fabrizio Mele

使用脚本和样式排队的方法是正确的,我认为这里的错误在于maxcdn URL的双“/”前缀之前的列。尝试删除两个URL中的列。

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\' );
?>
它将下载您的文件

相关推荐

如何创建4列和2列Twitter-Bootstrap相结合的WordPress循环?

我想根据4列(桌面视图)、2列(mobile view 768px)和1列(mobile view 425px)的组合显示帖子。我在下面找到了很棒的代码:<?php $paged = ( get_query_var(\'paged\') ) ? get_query_var(\'paged\') : 1; $args=array( \'post_type\' => \'post\',