Current File : /home/virtualki/22346/wp-content/themes/megiw/classes/dropdownwalker.php
<?php

class WI_DropDown_Nav_Walker extends Walker_Nav_Menu{
	
    function start_lvl(&$output, $depth=0, $args=array()) {		
		$output .= '';
    }
	
    function end_lvl(&$output, $depth=0, $args=array()) {	
    	$output .= '';
    }
	
    function start_el(&$output, $item, $depth=0, $args=array()) {
    	global $post;
		
		$selected = '';
		
		if($item->current){
			$selected = 'selected';
		}
								
        $output .= '<option '.$selected.' value="'.get_permalink($item->object_id).'">'.esc_attr($item->title);
    }  

    function end_el(&$output, $item, $depth=0, $args=array()) {
    	global $post;
		    	
        $output .= '</option>';
    }	
}

?>