कस्टम नव वॉकर वर्तमान मेनू आइटम बच्चों, या भाई-बहनों को प्रदर्शित नहीं करते हैं


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 ने क्या कहा! मैंने लगभग याद किया कि आप एक समाधान के साथ आएंगे।
क्रिस क्रिचो

नेक्रो उत्तर। मैंने बहुत अच्छे उत्तर के साथ लगभग 2 साल पहले SO पर एक ही सवाल पूछा था। stackoverflow.com/questions/5826609/…
Stoosh

प्रश्न के अंदर उत्तर को अलग उत्तर में ले जाया गया। ओपी: कृपया वहाँ का पालन करें।
kaiser

जवाबों:


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()
 ));
?>

मैं @ स्टोश की टिप्पणी को इंगित करना चाहता हूं। stackoverflow.com/questions/5826609/… यह एक और अच्छा उपाय है
jchamb

0

मुझे एक ऐसा ही अनुभव हुआ था। आप पन्नों के तर्क को वॉकर से बाहर ले जाने के बारे में सोचना चाह सकते हैं। मूल रूप से, वर्तमान पृष्ठ पदानुक्रम को एक वस्तु के रूप में संकलित करें। फिर wp_nav_menu फ़ंक्शन में 'बहिष्कृत' पैरामीटर का उपयोग करें। अब बहिष्कृत पृष्ठ इस बात पर निर्भर करेंगे कि वर्तमान पृष्ठ में बच्चे हैं या नहीं। अगर कोई संतान भाई नहीं दिखाती; अगर बच्चे && वे बच्चे लाइन शो के अंत में भाई और बच्चे हैं; अगर बच्चे && और पोते हैं, तो भाइयों को छोड़कर बच्चों और पोते को दिखाते हैं।


यह excludeपैरामीटर क्या है जिसका आप उल्लेख करते हैं? मैं दस्तावेज देख रहा हूं और इसका कोई संदर्भ नहीं देखता हूं।
क्रिस क्रिचो

1
मैं माफी चाहता हूं मुझसे गलती हुई थी। आप सही हैं कि कोई 'बहिष्कृत' पैरामीटर नहीं है। मेरा मतलब "wp_list_pages" फ़ंक्शन का उपयोग करना था।
स्टीव फिशर

बहुत अच्छा, और कोई चिंता नहीं। मैं बस उत्सुक था अगर वहाँ कुछ अनिर्दिष्ट था लेकिन पीछे के अंत में - मैंने देखा है कि पहले हुआ था। इसे क्लीयर करने के लिए शुक्रिया! मैंने wp_list_pages()इस संदर्भ में उपयोग करने के बारे में नहीं सोचा था , इसलिए यह एक दिलचस्प विचार है।
क्रिस क्रिचो
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.