I want remove all <audio>
shortcode in my post with preg_replace
, but that dosnt work for me:
$content = preg_replace('#<audio>(.*?)</audio>#', '', $content);
I want remove all <audio>
shortcode in my post with preg_replace
, but that dosnt work for me:
$content = preg_replace('#<audio>(.*?)</audio>#', '', $content);
Assuming there I will no newline character in between, Below Regex will work for you.
<audio.*?<\/audio>