eventorganiser_menu_position
	(filter) 
		
						
						
						
                            Filters the menu position.
                This allows you to change where "Events" appears in the admin menu.
            
            Parameters
    
        
        
            int
         | 
        
            $menu_position         | 
        
             Menu position. Defaults to 5. 
         | 
    
        
Example Usage
add_filter( 'eventorganiser_menu_position', 'my_callback_function', 10, 1 );
function my_callback_function( $menu_position ){
	//Change first value and return it
	return $menu_position
};
Resources