Skip to content
Advertisement

How to use str_replace in PHP so it doesn’t effect html tags and attributes

I want to change some words (random word leaving first and last word) in page in WordPress . For example Team will be Taem, Blame will be Bamle. I am using str_replace to acheive this with the_content filter

JavaScript

The issue I am facing is when I run str_replace it also changes text in links and classes of HTML. I just want to change the text not html. For example if I change Content word
<a class='elementor content'>Content Here</a> It becomes <a class='elementor conentt'>Conentt Here</a

Can someone provide a Good solution for this?

Advertisement

Answer

If you realy have to use str_replace

Use preg_split to split between HTML tags and plain text:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement