WP 테마를 사용자 지정할 때 navbar를 \"태그 앞에 배치해야 합니까? 뒤에 배치해야 합니까?
저는 어린이 테마를 만들어 WP 테마를 커스터마이징하고 있습니다.부트스트랩의 네비바를 헤더에 삽입합니다.하위 테마 디렉토리에 있는 php 파일.하지만 navbar code를 어디에 두어야 할지 잘 모르겠습니다.저는 그것을 앞뒤로 둘 수 있습니다.<body>
태그를 성공적으로 지정했습니다(내가 어떤 것을 선택하든 navbar는 잘 표시됩니다). 하지만 경험이 많은 친구에게 전화를 걸어 어떤 것이 더 나은 방법인지 묻고 싶습니다.
수정되지 않은 원래 머리글입니다.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">
내 navbar 코드가 대체됩니다.<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
요소는 문서를 두 개의 주요 섹션으로 나눕니다.head
그리고.body
.
머리
그head
요소에는 메타데이터(문서 자체를 설명하거나 스크립트 및 스타일시트와 같은 관련 리소스와 연결하는 정보)가 들어 있습니다.
몸
페이지의 대부분이 여기에 포함되어 있습니다.이 요소에는 문단, 목록, 링크, 이미지, 테이블 등을 포함하여 브라우저 창(또는 뷰포트)에서 볼 수 있는 모든 내용이 포함되어 있습니다.신체적 요소는 그 자체의 독특한 속성을 가지고 있는데, 지금은 모두 가치가 떨어졌지만, 그 외에 이 요소에 대해서는 할 말이 거의 없습니다.페이지가 어떻게 표시되느냐는 사용자가 페이지에 채우기로 결정한 내용에 전적으로 달려 있습니다. 이러한 내용이 무엇인지 확인하려면 모든 HTML 요소의 알파벳순 목록을 참조하십시오.
navbar는 일반적으로 첫 번째 항목으로 삽입됩니다.<body>
꼬리표를 매다
최소 예제
여기 아주 기본적인 html이 있습니다.
<head>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Popper JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<p>I'm the page body</p>
</div>
</div>
</body>
navbar를 여기에 삽입합니다.
<body>
<div class="container">
<div class="row">
<!-- navbar goes here -->
<p>I'm the page body</p>
</div>
</div>
</body>
언급URL : https://stackoverflow.com/questions/31768460/should-i-place-my-navbar-before-or-after-the-body-tag-when-customizing-a-wp
'programing' 카테고리의 다른 글
클릭한 요소의 클래스를 가져오는 방법은 무엇입니까? (0) | 2023.10.11 |
---|---|
Apple M1에서 march= native가 작동하지 않는 이유는 무엇입니까? (0) | 2023.10.11 |
HTML 요소에 대한 브라우저의 기본 CSS (0) | 2023.10.11 |
ip-address를 대상으로 하는 Powershell 원격화 (0) | 2023.10.11 |
ODAC 12c와 엔티티 프레임워크 6 (0) | 2023.10.11 |