If you often type certain text and want it to always link to the same place everytime it appears on your site, this can help.
You provide a key=>value pair in the array here:

And anytime a post is viewed, the script will search for the text on the left and wrap it in a link to the url you enter on the right.
<?php
namespace KVxqWZOe;
function hotlink_custom_keywords( $text_content ) {
if ( \is_single() ) {
$replacements = array(
'Jade Leaf' => 'https://amzn.to/3wq3CkE',
'Rishi matcha' => 'https://amzn.to/3ZXiZyq',
'Rishi Everyday matcha' => 'https://amzn.to/3ZXiZyq',
'Spirit Tea' => 'https://spirittea.co/',
'Tenzo matcha' => 'https://amzn.to/3kBMiq9',
);
foreach ($replacements as $text => $link) {
$text_content = str_ireplace( $text, ('<a class="auto-hotlink" href="'.$link.'" target="_blank">'.$text.'</a>'), $text_content );
}
}
return $text_content;
}
add_filter( 'the_content', '\KVxqWZOe\hotlink_custom_keywords' );
Leave a Reply