我已經嘗試使用以下代碼將Bootstrap嵌入到Wordpress中,但它不起作用。需要幫助..........將引導程序添加到Wordpress使用functions.php
<?php
function resources() {
wp_enqueue_style('style',get_stylesheet_uri());
wp_enqueue_style('bootstrap.min',get_template_directory_uri().'/css/bootstrap.min.css');
wp_enqueue_style('bootstrap',get_template_directory_uri().'/css/bootstrap.css');
wp_enqueue_style('bootstrap-theme.min',get_template_directory_uri().'/css/bootstrap-theme.min.css');
}
add_action('wp_enqueue_scripts', 'resources');
它看起來像你總是附上引導程序的CSS,但不是JavaScript。也許包括js會有所幫助。 – reallynice
@reallynice CSS應該沒有任何問題,因爲js,但我試過了,仍然沒有。不管怎麼說,多謝拉。 –
不要將css的'unminified'和'minified'版本排入隊列。 – zipkundan