사용자 지정 Nav Walker는 현재 메뉴 항목 자식 또는 자식이없는 형제를 표시합니다.


14

나는 몇 시간 동안 엉망이었고 검색했지만 여전히 작동하지 않으므로 마침내 포기하고 도움을 요청하고 있습니다.

현재 페이지 하위 만 표시하거나 하위가없는 경우 페이지 형제를 표시하는 사용자 정의 워커를 작성하려고합니다.

예를 들어 다음 메뉴 트리를 사용하십시오.

  • 1.0
    • 1.2.0
      • 1.3.0
      • 1.3.1
      • 1.3.2
    • 1.2.1
    • 1.2.2
  • 2.0

현재 페이지 1.2.0에 있다고 가정 해 봅시다. 이 페이지에는 자식 (1.3.0, 1.3.1, 1.3.2)을 표시하고 싶습니다.

그러나 1.2.2 페이지에 있으면 자식이 없으므로 현재 수준 형제임을 표시해야하므로 (1.2.0, 1.2.1, 1.2.2)를 표시해야합니다.


4
다른 사람에게 더 명확하고 질문에 답하지 않은 사이트가 표시되지 않도록 솔루션을 답변으로 이동하십시오.
Rarst

@Rarst가 말한 것! 나는 당신이 해결책을 생각해 낼 것이라고 거의 놓쳤다.
Chris Krycho

네크로 답변. 나는 2 년 전에 SO에 대해 거의 같은 질문을 아주 잘 대답했습니다. stackoverflow.com/questions/5826609/…
Stoosh

질문 내에서 답변을 분리하여 답변을 분리했습니다. OP : 다음에 연락하십시오.
카이저

답변:


4

이것은 현재 메뉴 항목의 하위 항목 만 표시하는 데 사용 된 워커입니다. 또는 자체 자식이없는 메뉴 항목 형제입니다.

수업 내내 각 섹션을 설명하는 의견이 있습니다

<?php

class SH_Child_Only_Walker extends Walker_Nav_Menu {

private $ID;
private $depth;
private $classes = array();
private $child_count = 0;
private $have_current = false;


// Don't start the top level
function start_lvl(&$output, $depth=0, $args=array()) {

    if( 0 == $depth || $this->depth != $depth )
        return;

    parent::start_lvl($output, $depth,$args);
}

// Don't end the top level
function end_lvl(&$output, $depth=0, $args=array()) {
    if( 0 == $depth || $this->depth != $depth )
        return;

    parent::end_lvl($output, $depth,$args);
}

// Don't print top-level elements
function start_el(&$output, $item, $depth=0, $args=array()) {

    $is_current = in_array('current-menu-item', $this->classes);

    if( 0 == $depth || ! $is_current )
        return;

    parent::start_el($output, $item, $depth, $args);
}

function end_el(&$output, $item, $depth=0, $args=array()) {
    if( 0 == $depth )
        return;

    parent::end_el($output, $item, $depth, $args);
}

// Only follow down one branch
function display_element( $element, &$children_elements, $max_depth, $depth=0, $args, &$output ) {

    // Check if element is in the current tree to display
    $current_element_markers = array( 'current-menu-item', 'current-menu-parent', 'current-menu-ancestor' );
    $this->classes = array_intersect( $current_element_markers, $element->classes );

    // If element has a 'current' class, it is an ancestor of the current element
    $ancestor_of_current = !empty($this->classes);

    // check if the element is the actual page element we are on.
    $is_current = in_array('current-menu-item', $this->classes);

    // if it is the current element
    if($is_current) {

        // set the count / ID / and depth to use in the other functions.
        $this->child_count = ( isset($children_elements[$element->ID]) ) ? count($children_elements[$element->ID]) : 0;
        $this->ID = $element->ID;
        $this->depth = $depth;
        $this->have_current = true;

        if($this->child_count > 0) {

            // if there are children loop through them and display the kids.
            foreach( $children_elements[$element->ID] as $child ) {
                parent::display_element( $child, $children_elements, $max_depth, $depth, $args, $output );
            }

        } else {
            // no children so loop through kids of parent item.
            foreach( $children_elements[$element->menu_item_parent] as $child ) {
                parent::display_element( $child, $children_elements, $max_depth, $depth, $args, $output );
            }

        }
    }

    // if depth is zero and not in current tree go to the next element
    if ( 0 == $depth && !$ancestor_of_current)
        return;

    // if we aren't on the current element proceed as normal
    if(! $this->have_current )
        parent::display_element( $element, $children_elements, $max_depth, $depth, $args, $output );
}
}

wp_nav_menu에서 다른 사용자 정의 워커와 같이 첨부하십시오.

<?php
wp_nav_menu( array(
    'menu' => 'primary-menu'
    ,'container' => 'nav'
    ,'container_class' => 'subpages'
    ,'depth' => 0
    ,'walker' => new SH_Child_Only_Walker()
 ));
?>

@Stoosh의 의견이 여기에 있음을 지적하고 싶습니다. stackoverflow.com/questions/5826609/… 이것이 또 다른 좋은 솔루션
이므로

0

나는 비슷한 경험을했다. 워커에서 페이지 로직을 이동하는 것에 대해 생각할 수 있습니다. 기본적으로 현재 페이지 계층 구조를 개체로 컴파일하십시오. 그런 다음 wp_nav_menu 함수에서 'exclude'매개 변수를 사용하십시오. 이제 제외 된 페이지는 현재 페이지에 자식이 있는지 여부에 따라 다릅니다. 자녀가 형제를 보이지 않으면; 아이들과 그 아이들이 라인의 끝이라면 형제와 아이들을 보여줍니다. 자녀 및 손자와 손자가있는 경우 형제를 제외하고 자녀와 손자를 보여줍니다.


exclude매개 변수 는 무엇입니까 ? 내가 찾고 있어요 문서 와 그것에 대한 참조를 볼 수 없습니다.
Chris Krycho

1
실수 한 것에 대해 사과드립니다. 'exclude'매개 변수가없는 것이 맞습니다. "wp_list_pages"기능을 사용하려고했습니다.
Steve Fischer

매우 좋고 걱정할 필요가 없습니다. 문서화되지 않은 것이 있지만 백엔드에 있는지 궁금했습니다. 정리해 주셔서 감사합니다! 나는 wp_list_pages()이 맥락에서 사용하는 것을 생각하지 않았 으므로 흥미로운 아이디어입니다.
Chris Krycho
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.