Liste öğesindeki bir menünün sonuna bir arama alanı eklemem gerekiyor.
Yürüteçler bakıyordum ama son öğenin ne olduğunu (hatta toplamı) anlamak gerçekten zor. Ayrıca özel öğenin kodunu nereye ekleyeceğim.
Şu anda aldım;
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>
}
}