homegrade_blocks_production/blocks/questions-container/build/render.php
Antoine M 3511f7e4b1
All checks were successful
continuous-integration/drone/push Build is passing
fixing infinite rerender when no post ID
2024-12-17 10:34:26 +01:00

12 lines
389 B
PHP

<?php
$relatedPostId = $attributes['relatedPostId'] ?? null;
if (!$relatedPostId) return;
$relatedPost = get_post($relatedPostId);
?>
<section id="questions-container-<?php echo $relatedPostId ?>" class="questions-container-block">
<h2 class="questions-container-block__title"><?php echo $relatedPost->post_title ?></h2>
<?php echo do_blocks($relatedPost->post_content) ?>
</section>