Remove iPhone detection on login page
Found a solution. Add this to the functions file: function remove_iphone_detection() { global $is_iphone; $is_iphone = false; } add_action(‘init’, ‘remove_iphone_detection’); Though this removes iphone detection from wordpress a a whole, not just the login page, it achieved what I needed.