Bootstrap Navbar在Wordpress主题中不起作用

时间:2018-09-16 16:53:25

标签: wordpress twitter-bootstrap-3 themes navbar

我正在尝试学习使用Bootstrap为Wordpress主题创建导航栏。我只想制作菜单而不使用Navwalker。我使用了W3学校的一个简单的Bootstrap示例,但没有用。这是所需的导航栏。

所需结果:

enter image description here

我的标题中有相同​​的代码。

<!doctype html>
<html <?php language_attributes();?>>
   <head>
      <meta charset="<?php bloginfo('charset'); ?>">
      <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
      <meta name="description" content="<?php bloginfo('description'); ?>">
      <title><?php bloginfo('name'); ?> |
         <?php is_front_page() ? bloginfo('description') : wp_title(); ?>
      </title>
      <!-- Bootstrap core CSS -->
      <link href="<?php bloginfo('template_url');?>/css/bootstrap.css" rel="stylesheet">
      <!-- Custom styles for this template -->
      <link href="https://fonts.googleapis.com/css?family=Playfair+Display:700,900" rel="stylesheet">
      <link href="<?php bloginfo('stylesheet_url')?>" rel="stylesheet">
      <?php wp_head(); ?>  <!-- This adds other information like plugins to the head -->
   </head>
   <body>
      <div class="container">
      <div class="row">
      </div>
      <nav class="navbar navbar-default">
         <div class="container-fluid">
            <div class="navbar-header">
               <a class="navbar-brand" href="#">WebSiteName</a>
            </div>
            <ul class="nav navbar-nav">
               <li class="active"><a href="#">Home</a></li>
               <li><a href="#">Page 1</a></li>
               <li><a href="#">Page 2</a></li>
               <li><a href="#">Page 3</a></li>
            </ul>
         </div>
      </nav>
      <div class="row">
         hello world
      </div>
      </header>

这是我的导航栏的外观

我的结果:

enter image description here

2 个答案:

答案 0 :(得分:2)

请尝试通过主题的功能使文件入队,而不是将其添加到header.php。

// Load main files  
function enqueue_styles_and_scripts() {

   // Bootstrap
   wp_enqueue_style ('bootstrap_css', get_template_directory_uri() . '/assets/css/bootstrap.min.css' );
   wp_enqueue_script    ('bootstrap_js',  get_template_directory_uri() . '/assets/js/bootstrap.min.js', array('jquery'), 1.1, true );

   // Main files
   wp_enqueue_style ('style_css',   get_template_directory_uri() . '/style.css' );
   wp_enqueue_script    ('main_js', get_template_directory_uri() . '/assets/js/main.js', array('jquery'), 1.1, true );

}

add_action( 'wp_enqueue_scripts', 'enqueue_styles_and_scripts' );

答案 1 :(得分:-1)

假设您的引导CSS位于css文件夹下的主题目录中,请尝试将链接更改为:

<link href="<?php echo get_template_directory_uri(); ?>/css/bootstrap.css" rel="stylesheet">