Skip to content

Instantly share code, notes, and snippets.

@henshaw
Created May 4, 2025 02:13
Show Gist options
  • Select an option

  • Save henshaw/47bb8a0d91a8bb87420b0e2f85a91cb8 to your computer and use it in GitHub Desktop.

Select an option

Save henshaw/47bb8a0d91a8bb87420b0e2f85a91cb8 to your computer and use it in GitHub Desktop.
Custom WordPress block used for rating summaries
<div class="ratingsummary">
<div class="rating">
<div><span title="Rating: <?php block_field( 'rating' ); ?> out of 10"><?php block_field( 'rating' ); ?></span></div>
</div>
<div class="pros">
<h2>What I liked most</h2>
<?php block_field( 'strengths' ); ?>
</div>
<div class="cons">
<h2>Could be better</h2>
<?php block_field( 'shortcomings' ); ?>
</div>
</div>
@henshaw
Copy link
Copy Markdown
Author

henshaw commented May 4, 2025

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment