Skip to content

Instantly share code, notes, and snippets.

View stefenphelps's full-sized avatar

Stefen Phelps stefenphelps

View GitHub Profile
@stefenphelps
stefenphelps / single.twig
Created July 2, 2021 17:19
Get ACF oEmbed URL via Timber
{# the simple way to get the URL from an oEmbed field #}
{% if item.meta('oembed') %}
<div class="category-featured-post">
{% set videoSrc = item.meta('oembed')|split("src=") %}
{% set videoUrl = videoSrc[1]|split('"') %}
{{ videoUrl[1] }}
</div>
{% endif %}