Last active
April 30, 2019 14:04
-
-
Save benplum/3b840d1403e45470309e29f9b520acfd to your computer and use it in GitHub Desktop.
Block Editor - Block Template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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