I used a word multiple times on my site and I want to replace this word with a text link in all my site.
<?php
function template_outputfilter_profanity_filter($output, &$smarty)
{
$wordlist = "Sports|Travel";
return preg_replace("/\b($wordlist)\b/ie", 'preg_replace("/./","*","\\1")', $output);
}
?>
Extraction
********
How to Replace Word with text link?
<a href="http://www.example.com/">Sports</a> <a href="http://www.example.com/">Travel</a>
Instead of Replace Word with
********
Works, but I do not want to repeat the word 8 times
return preg_replace("/\b($wordlist)\b/ie", 'preg_replace("/./","<a href=\"http://www.example.com/\">Sports</a>","\\1")', $output);
str_replace()? – Titanium Jan 27 at 23:21