gpt4 book ai didi

php - 自定义 WP 主题时,我应该将导航栏放在 `` 标签之前还是之后?

转载 作者:行者123 更新时间:2023-12-04 16:08:58 24 4
gpt4 key购买 nike

我正在通过制作子主题来自定义 WP 主题。我正在将 Bootstrap 中的导航栏放入子主题目录中的 header.php 文件中。但是,我不确定在哪里放置导航栏代码。我可以将它放在 <body> 之前和之后标记成功(如,导航栏显示得很好,无论我选择哪个),但我想给这里有经验的 friend 打电话,问哪个是更好的做法。

未经修改的原始 header.php 代码

<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<meta name="viewport" content="width=device-width" />
<title><?php wp_title( ' | ', true, 'right' ); ?></title>
<link rel="stylesheet" type="text/css" href="<?php echo get_stylesheet_uri(); ?>" />
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?> >
<div id="wrapper" class="hfeed">
<header id="header" role="banner">
<section id="branding">
<div id="site-title"><?php if ( ! is_singular() ) { echo '<h1>'; } ?><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php esc_attr_e( get_bloginfo( 'name' ), 'blankslate' ); ?>" rel="home"><?php echo esc_html( get_bloginfo( 'name' ) ); ?></a><?php if ( ! is_singular() ) { echo '</h1>'; } ?></div>
<div id="site-description"><?php bloginfo( 'description' ); ?></div>
</section>
<nav id="menu" role="navigation">
<div id="search">
<?php get_search_form(); ?>
</div>
<?php wp_nav_menu( array( 'theme_location' => 'main-menu' ) ); ?>
</nav>
</header>
<div id="container">

我的导航条代码将替换 <nav>上面代码中的部分,如
<!DOCTYPE html>
<html <?php language_attributes(); ?>>

<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<meta name="viewport" content="width=device-width, initial scale=1" />
<title><?php wp_title( ' | ', true, 'right' ); ?></title>
<link rel="stylesheet" type="text/css" href="<?php echo get_stylesheet_uri(); ?>" />
<?php wp_head(); ?>

</head>

<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="<?php echo esc_url( home_url( '/' ) ); ?>">MoonLighting</a>
</div>

<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li><a href="pages/adultanswers.php">Side Job</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">My Account <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#">Settings</a></li>
<li><a href="#">Add Funds</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Sign Out</a></li>
</ul>
</li>
</ul>
</div>

</div><!-- /.container-fluid -->
</nav>

<body <?php body_class(); ?>>
<div id="wrapper" class="hfeed">
<header id="header" role="banner">
<section id="branding">
<!--I removed this for reasons unrelated-->
</section>

最佳答案

html元素将文档分为两个主要部分:headbody .


head元素包含元数据——描述文档本身或将其与相关资源相关联的信息,例如脚本和样式表。

正文

这是包含大部分页面的地方。您可以在浏览器窗口(或视口(viewport))中看到的所有内容都包含在此元素中,包括段落、列表、链接、图像、表格等。 body 元素有一些自己的独特属性,所有这些现在都已弃用,但除此之外,关于这个元素几乎没有什么可说的。页面的外观完全取决于您决定填充的内容;请参阅所有 HTML 元素的字母顺序列表以确定这些内容可能是什么。

更多详情请查看thisthis

关于php - 自定义 WP 主题时,我应该将导航栏放在 `<body>` 标签之前还是之后?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31768460/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com