ฉันต้องเพิ่มช่องค้นหาที่ท้ายเมนูในรายการ
ฉันได้ดูวอล์กเกอร์ แต่ก็พบว่ามันยากที่จะคิดออกว่ารายการสุดท้ายคืออะไร (หรือแม้กระทั่งได้รับทั้งหมด) รวมถึงที่ที่ฉันจะเพิ่มรหัสสำหรับรายการที่กำหนดเอง
ฉันมีอยู่ในปัจจุบัน;
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>
}
}