如何将bootstrap cdn添加到wordpress?

时间:2016-12-11 21:43:12

标签: jquery wordpress twitter-bootstrap

我使用以下代码使用cdn添加Botstrap,但它不会在wordpress中添加。我试图直接在标题中添加,它完美地工作,但我想通过wordpress函数

来做到这一点
BackButton

我也尝试了这个,它也没有用:

FirstActivity.java

2 个答案:

答案 0 :(得分:0)

Hi Friend尝试使用此代码:



function rpthem_enqueue_style(){
wp_enqueue_style( 'bootstrapcss','https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css', false, null );
}
function rpthem_enqueue_script() {
wp_enqueue_script( 'bootstapjs', 'https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js', false, null );
}

add_action( 'wp_enqueue_scripts', 'rpthem_enqueue_style' );
add_action( 'wp_enqueue_scripts', 'rpthem_enqueue_script' );




答案 1 :(得分:0)

您只需编辑Header.php并粘贴即可。

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">

<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>