Stars: 225
Forks: 21
Pull Requests: 23
Issues: 45
Watchers: 13
Last Updated: 2023-03-18 00:25:09
Create Gutenberg blocks from Twig templates and ACF fields.
License: MIT License
Languages: PHP
Generate ACF Gutenberg blocks just by adding templates to your Timber theme. This package is based heavily on this article by nicoprat and the plugin by MWDelaney.
Read the complete documentation
This plugin is build with help of contributors:
Add twig templates to views/blocks
which get and use ACF data. Each template requires a comment block with some data in it:
{#
Title: Testimonial
Description: Customer testimonial
Category: formatting
Icon: admin-comments
Keywords: testimonial quote "customer testimonial"
Mode: edit
Align: left
PostTypes: page post
SupportsAlign: left right
SupportsMode: false
SupportsMultiple: false
#}
<blockquote data-{{ block.id }}>
<p>{{ fields.testimonial }}</p>
<cite>
<span>{{ fields.author }}</span>
</cite>
</blockquote>
<style type="text/css">
[data-{{ block.id }}] {
background: {{ fields.background_color }};
color: {{ fields.text_color }};
}
</style>
Timber ACF WP Blocks is fully compatible with both Timber 1.x and Timber 2.x versions.