मुझे एक कस्टम वॉकर के उपयोग के माध्यम से इस साइट पर एक समाधान मिला ।
दो चरण: डिफ़ॉल्ट wp_nav_menu कोड को एक संपादित के साथ बदलें, और फिर विषय के functions.php में कोड जोड़ें।
पहले, डिफ़ॉल्ट wp_nav_code को निम्नलिखित के साथ बदलें (कोड उपरोक्त साइट से कॉपी किया गया है):
wp_nav_menu( array(
'menu' => 'Main Menu',
'container' => false,
'menu_class' => 'nav',
'echo' => true,
'before' => '',
'after' => '',
'link_before' => '',
'link_after' => '',
'depth' => 0,
'walker' => new description_walker())
);
अगला, functions.php में निम्न कोड जोड़ें। ऐसा करके आप वास्तव में मेनू लिंक में एक वर्ग जोड़ सकते हैं:
class description_walker extends Walker_Nav_Menu
{
function start_el(&$output, $item, $depth, $args)
{
global $wp_query;
$indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';
$class_names = $value = '';
$classes = empty( $item->classes ) ? array() : (array) $item->classes;
$class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item ) );
$class_names = ' class="'. esc_attr( $class_names ) . '"';
$output .= $indent . '<li id="menu-item-'. $item->ID . '"' . $value . $class_names .'>';
$attributes = ! empty( $item->attr_title ) ? ' title="' . esc_attr( $item->attr_title ) .'"' : '';
$attributes .= ! empty( $item->target ) ? ' target="' . esc_attr( $item->target ) .'"' : '';
$attributes .= ! empty( $item->xfn ) ? ' rel="' . esc_attr( $item->xfn ) .'"' : '';
$attributes .= ! empty( $item->url ) ? ' href="' . esc_attr( $item->url ) .'"' : '';
$prepend = '<strong>';
$append = '</strong>';
$description = ! empty( $item->description ) ? '<span>'.esc_attr( $item->description ).'</span>' : '';
if($depth != 0)
{
$description = $append = $prepend = "";
}
$item_output = $args->before;
$item_output .= '<a'. $attributes .'>';
$item_output .= $args->link_before .$prepend.apply_filters( 'the_title', $item->title, $item->ID ).$append;
$item_output .= $description.$args->link_after;
$item_output .= '</a>';
$item_output .= $args->after;
$output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
if ($item->menu_order == 1) {
$classes[] = 'first';
}
}
}
कोड के अंत में कई पंक्तियाँ हैं जो $ item_output से शुरू होती हैं। विशेष रूप से, आप इस टुकड़े को देखना चाहते हैं:
$item_output .= '<a'. $attributes .'>';
क्योंकि यह लाइन लिंक html की शुरुआत के लिए आउटपुट को निर्धारित करती है। यदि आप इसे कुछ इस तरह से बदलते हैं:
$item_output .= '<a'. $attributes . 'class="abc"' .'>';
तब मेनू में आपके सभी लिंक में क्लास = "एबीसी" होगा, उन्हें जोड़ा जाएगा।
उस ने कहा, यह प्रत्येक लिंक के लिए एक कस्टम वर्ग की अनुमति नहीं देता (या कम से कम मुझे नहीं पता कि इसे कैसे कोड किया जाए)। यह मेरे लिए एक मुद्दा है।
यह पूछने वालों के लिए कि आप ऐसा क्यों करना चाहेंगे? मैं अपने मेन्यू लिंक को खुले लाइटबॉक्स (कलरबॉक्स, अधिक विशिष्ट होना चाहता हूं) चाहता हूं, और उन्हें ऐसा करने के लिए लिंक पर कक्षाओं की आवश्यकता होती है। उदाहरण के लिए:
<a class="lightbox1" href="#">Photo</a>
क्या संभवतः वर्गों को गतिशील रूप से उत्पन्न करने का एक तरीका है, जैसे कि पहले लिंक के लिए "लाइटबॉक्स 1", दूसरे लिंक के लिए "लाइटबॉक्स 2", और इसी तरह?