How to replace default rotating header images with my own

Best way to go is to make a Child Theme of Twenty Eleven. Then first remove the default images: // REMOVE TWENTY ELEVEN DEFAULT HEADER IMAGES function wptips_remove_header_images() { unregister_default_headers( array(‘wheel’,’shore’,’trolley’,’pine-cone’,’chessboard’,’lanterns’,’willow’,’hanoi’) ); } add_action( ‘after_setup_theme’, ‘wptips_remove_header_images’, 11 ); After that you can tell your Child theme to use your own images: //ADD NEW DEFAULT HEADER … Read more