Support

Account

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

  • In that case you would need to use string manipulation functions, or most likely regular expressions. The problem with these is that they may or may not work if the format of the content is altered

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