Support

Account

Home Forums Front-end Issues Strip iframe tags but output the url Reply To: Strip iframe tags but output the url

  • 
    <?php 
    	$value = get_sub_field('embed_iframe', false);
    if (preg_match('/src="([^"]+)/', $value, $matches)) {
      $url = $matches[1];
    }
    
    echo $url;
    ?>