반응형
워드 프레스 헤더 탐색 목록 항목을 div로 변경
모든 ul,li 태그를 워드프레스 헤더의 div 태그로 변경하고 싶습니다.wp_nav_메뉴 ()은(는) 항상 ul,li를 반환합니다.이것이 제가 바꾸고 싶은 것입니다.
<ul>
<li>Home</li>
<li>Services</li>
<li>Products</li>
</ul>
이런 식으로 바뀌었나 봅니다.
<div>
<div>Home</div>
<div>Services</div>
<div>Products</div>
</div>
제발 도와주세요.감사해요.
그러기 위해서는 커스텀 워커가 필요합니다. 쓱쓱쓱쓱가 답변한 이 클래스의 수정 버전은 이 클래스를 당신의 것에 붙여넣기만 하면 됩니다.functions.php
class Description_Walker extends Walker_Nav_Menu
{
function start_el(&$output, $item, $depth, $args)
{
$classes = empty($item->classes) ? array () : (array) $item->classes;
$class_names = join(' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item ) );
!empty ( $class_names ) and $class_names = ' class="'. esc_attr( $class_names ) . '"';
$output .= "<div id='menu-item-$item->ID' $class_names>";
$attributes = '';
!empty( $item->attr_title ) and $attributes .= ' title="' . esc_attr( $item->attr_title ) .'"';
!empty( $item->target ) and $attributes .= ' target="' . esc_attr( $item->target ) .'"';
!empty( $item->xfn ) and $attributes .= ' rel="' . esc_attr( $item->xfn ) .'"';
!empty( $item->url ) and $attributes .= ' href="' . esc_attr( $item->url ) .'"';
$title = apply_filters( 'the_title', $item->title, $item->ID );
$item_output = $args->before
. "<a $attributes>"
. $args->link_before
. $title
. '</a></div>'
. $args->link_after
. $args->after;
$output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
}
}
불러wp_nav_menu
인에header.php
따라다니듯이
wp_nav_menu(
array (
'menu' => 'main-menu',
'container' => 'div', // parent container
'container_id' => 'my_nav', //parent container ID
'depth' => 1,
'items_wrap' => '%3$s', // removes ul
'walker' => new Description_Walker // custom walker to replace li with div
)
);
<ul class="navbar-nav mx-auto">
<li class="nav-item dropdown active dropdown-slide">
<a class="nav-link" href="#" data-toggle="dropdown">Home
<span>/</span>
</a>
<!-- Dropdown list -->
<div class="dropdown-menu">
<a class="dropdown-item" href="index.html">Homepage</a>
<a class="dropdown-item" href="homepage-two.html">Homepage 2</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="speakers.html">Speakers
<span>/</span>
</a>
</li>
<li class="nav-item dropdown dropdown-slide">
<a class="nav-link" href="#" data-toggle="dropdown">Pages<span>/</span></a>
<!-- Dropdown list -->
<div class="dropdown-menu">
<a class="dropdown-item" href="about-us.html">About Us</a>
<a class="dropdown-item" href="single-speaker.html">Single Speaker</a>
<a class="dropdown-item" href="gallery.html">Gallery</a>
<a class="dropdown-item" href="gallery-two.html">Gallery-02</a>
<a class="dropdown-item" href="testimonial.html">Testimonial</a>
<a class="dropdown-item" href="pricing.html">Pricing</a>
<a class="dropdown-item" href="FAQ.html">FAQ</a>
<a class="dropdown-item" href="404.html">404</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="schedule.html">Schedule<span>/</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="sponsors.html">Sponsors<span>/</span></a>
</li>
<li class="nav-item dropdown dropdown-slide">
<a class="nav-link" href="#" data-toggle="dropdown">News
<span>/</span>
</a>
<!-- Dropdown list -->
<div class="dropdown-menu">
<a class="dropdown-item" href="news.html">News without sidebar</a>
<a class="dropdown-item" href="news-right-sidebar.html">News with right sidebar</a>
<a class="dropdown-item" href="news-left-sidebar.html">News with left sidebar</a>
<a class="dropdown-item" href="news-single.html">News Single</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
언급URL : https://stackoverflow.com/questions/12159486/wordpress-change-header-navigation-list-items-to-div
반응형
'programing' 카테고리의 다른 글
아무것도 하지 않기 위해 잠시 블록을 사용하는 것은 나쁜 일입니까? (0) | 2023.10.09 |
---|---|
판다: 각 그룹의 평균으로 결측치 채우기 (0) | 2023.10.09 |
SQL행반납순서 (0) | 2023.10.09 |
자바스크립트에서 숫자의 소수점 수를 구하는 가장 간단한 방법 (0) | 2023.10.09 |
jquery를 사용하여 모든 이벤트의 바인딩을 해제하는 방법 (0) | 2023.10.09 |