मुझे सूची आइटम में मेनू के अंत में एक खोज फ़ील्ड जोड़ना होगा।
मैं वॉकर को देख रहा हूं, लेकिन यह पता लगाना बहुत मुश्किल है कि अंतिम वस्तु क्या है (या यहां तक कि कुल प्राप्त करें)। इसके अलावा मैं कस्टम आइटम के लिए कोड कहां जोड़ूंगा।
मुझे वर्तमान में मिल गया है;
class mainNav_walker extends Walker_Nav_Menu
{
public function start_el( &$output, $item, $depth, $args )
{
//print_r($item);
$output .= $this->custom_content( $item );
parent::start_el( &$output, $item, $depth, $args );
}
protected function custom_content( $item )
{
// add <li>SEARCH FIELD HERE?</li>
}
}