Skip to content

Instantly share code, notes, and snippets.

@stefenphelps
Created July 2, 2021 17:19
Show Gist options
  • Save stefenphelps/bbd58c7c5b7c570a9e3f460e64318390 to your computer and use it in GitHub Desktop.
Save stefenphelps/bbd58c7c5b7c570a9e3f460e64318390 to your computer and use it in GitHub Desktop.
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 %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment