Skip to content

Instantly share code, notes, and snippets.

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