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];
}
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.