function set_image_fetch_priority($content) {
    $content = str_replace('<img', '<img fetchpriority="high"', $content);
    return $content;
}
add_filter('the_content', 'set_image_fetch_priority');