我需要在列表项的菜单末尾添加搜索字段。
我一直在寻找助步器,但发现要找出最后一个项目(甚至是总数)真的很困难。我还要在哪里添加自定义项目的代码。
我目前有;
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>
}
}