Home › Forums › ACF PRO › oEmbed params › Reply To: oEmbed params
Try this, it edits the iframe tag with PHP
<?php
$html = get_field('video');
$dom = new DOMDocument;
$dom->loadHTML($html);
foreach ($dom->getElementsByTagName('iframe') as $item) {
$src = $item->getAttribute('src');
$srcEx = explode('video/', $src);
$item->setAttribute('id', 'v-' . $srcEx[1]);
$item->setAttribute('src', $item->getAttribute('src') . '?api=1&player_id=v-' . $srcEx[1]);
print $dom->saveHTML();
}
?>
You can obviously change the way you assign the ID 😉
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.