2017-02-18 47 views
0

我有添加boostrap到WordPress的兒童主題的問題。無法在wordpress中導入引導程序

這是怎麼看我的文件夾中的子主題: http://i.imgur.com/vuOvYJ3g.jpg

,並沒有從css文件夾中的內容 http://i.imgur.com/AsQAi3r.jpg

在function.php我嘗試這樣做:

function theme_add_bootstrap() { 
    wp_enqueue_style('bootstrap-css', get_template_directory_uri() . '/css/bootstrap.min.css'); 
    wp_enqueue_style('style-css', get_template_directory_uri() . '/style.css'); 
    wp_enqueue_script('bootstrap-js', get_template_directory_uri() . '/js/bootstrap.min.js', array(), '3.0.0', true); 
} 

add_action('wp_enqueue_scripts', 'theme_add_bootstrap'); 

但沒有工作,在index.php我寫了類col-sm-3和Chrome的檢查元素,不能從bootstrap讀取類和樣式。

你能幫助我,非常感謝你!

回答

1

加載子主題的資產,使用get_stylesheet_directory_uri功能,而不是get_template_directory_uri功能。

function theme_add_bootstrap() { 
    wp_enqueue_style('bootstrap-css', get_stylesheet_directory_uri() . '/css/bootstrap.min.css'); 
    wp_enqueue_style('style-css', get_stylesheet_directory_uri() . '/style.css'); 
    wp_enqueue_script('bootstrap-js', get_stylesheet_directory_uri() . '/js/bootstrap.min.js', array(), '3.0.0', true); 
} 

add_action('wp_enqueue_scripts', 'theme_add_bootstrap'); 

您還可以檢查WordPress Child Theme瞭解更多信息。

+0

仍然不能工作:( – ml92

+0

您可以通過打開瀏覽器開發工具來驗證文件是否成功加載,然後導航到網絡選項卡,特別是篩選您想檢查的資產,這樣,您就可以驗證如果資產成功加載 –

+0

空,看這個圖片http://i.imgur.com/5So4C7d.jpg – ml92