-1

I want remove all <audio> shortcode in my post with preg_replace, but that dosnt work for me:

$content = preg_replace('#<audio>(.*?)</audio>#', '', $content);
Andronicus
  • 25,419
  • 17
  • 47
  • 88
mrmansour
  • 1
  • 1

1 Answers1

-1

Assuming there I will no newline character in between, Below Regex will work for you.

  <audio.*?<\/audio>

Demo

Rajesh G
  • 639
  • 4
  • 13