ERROR: Stop guessing!"; } add_filter( 'login_errors', 'show_less_login_info' ); /* Do not generate and display WordPress version */ function no_generator() { return ''; } add_filter( 'the_generator', 'no_generator' ); /* Filters to remove IDs and classes from menu items http://stackoverflow.com/questions/5222140/remove-li-class-id-for-menu-items-and-pages-list If you wish to use these filters, then simply un-comment them. add_filter('nav_menu_css_class', 'my_css_attributes_filter', 100, 1); add_filter('nav_menu_item_id', 'my_css_attributes_filter', 100, 1); add_filter('page_css_class', 'my_css_attributes_filter', 100, 1); function my_css_attributes_filter($var) { return is_array($var) ? array() : ''; } */