Skip to content

Instantly share code, notes, and snippets.

@benplum
Created April 30, 2019 14:05
Show Gist options
  • Save benplum/88f3ba389f28c07086330e75923ea73b to your computer and use it in GitHub Desktop.
Save benplum/88f3ba389f28c07086330e75923ea73b to your computer and use it in GitHub Desktop.
Block Editor - ACF Auto Block Template
<?php
$id = 'testimonial-' . $block['id'];
?>
<blockquote class="testimonial" id="<?php echo $id; ?>">
<p><?php echo $data['testimonial']; ?></p>
<cite>
<img src="<?php echo $data['avatar']['url']; ?>" alt="<?php echo $data['avatar']['alt']; ?>">
<span><?php echo $data['author']; ?></span>
</cite>
</blockquote>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment