Skip to content

Instantly share code, notes, and snippets.

@shirokoweb
Created November 30, 2019 08:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shirokoweb/e84183d01019a085f8f1a2f4a1a080c2 to your computer and use it in GitHub Desktop.
Save shirokoweb/e84183d01019a085f8f1a2f4a1a080c2 to your computer and use it in GitHub Desktop.
Unlimited Elements - Edit Widget - ACF repeater
<div class="wrapper">
{% for item in current_post.cf_module %}
<div class="left-col-img">
<img src="{{item.image_module|raw}}" alt="image alt here">
</div>
<div class ="right-col-content">
<h3>{{item.titre_du_module|raw}}</h3>
<p>{{item.description_du_module|raw}}</p>
</div>
{% endfor %}
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment