Disable annoying default image link in theme functions file. You can still make a link, but it won’t be the default.
//disable default image link
function wpb_imagelink_setup() {
$image_set = get_option( 'image_default_link_type' );
if ($image_set !== 'none') {
update_option('image_default_link_type', 'none');
}
}






