I have implemented this functionality on my WordPress website, which focuses on the tattoo niche, using the following code. If you have a website on a similar platform, you can give it a try.
add_filter(‘the_content’, ‘make_specific_link_external’);
function make_specific_link_external($content) {
$target_link = ‘http://example.com’; // Replace with the URL of the specific link you want to open externally
// Modify the HTML of the link to add ‘target=“_blank”’ attribute
$content = str_replace(‘<a href="’ . $target_link . ‘"’, ‘<a href="’ . $target_link . ‘" target=“_blank”’, $content);
return $content;
}