2014-03-06 86 views
0

我已經建立了一個基於使用Bootstrap3的測試網站,但切換不起作用,我找不到任何錯誤。 JS腳本安裝正確,我已經將代碼添加到鏈接到GitHub上提供的WP_nav_walker文件的函數文件中。頭文件代碼:Bootstrap3導航切換不工作在WordPress

<?php 
    wp_nav_menu(array(
    'menu' => 'primary', 
    'theme_location' => 'primary', 
    'depth' => 2, 
    'container' => 'div', 
    'container_class' => 'collapse navbar-collapse navbar-ex1-collapse', 
    'menu_class' => 'nav navbar-nav', 
    'fallback_cb' => 'wp_bootstrap_navwalker::fallback', 
    'walker' => new wp_bootstrap_navwalker()) 
    ); 
    ?> 

而且我已將此添加功能DOC:

// Register Custom Navigation Walker 
add_action('init', 'register_my_menu'); 
require_once('wp_bootstrap_navwalker.php'); 

connecting to wp_bootstrap_navwalker.php 

網站鏈接here

回答

2

似乎你的鏈接到你的JS文件是錯誤的。

http://creative-media.info/WarringtonBonsai/js/bootstrap.min.js 404(未找到)

當您添加腳本時,一定要使用

wp_enqueue_script('script-name', get_template_directory_uri() . '/js/bootstrap.min.js', array(),  '1.0.0', true); 

事實上,它試圖找到你的腳本在其他文件夾,然後你的主題文件夾。