homegrade_blocks_production/blocks/questions-container/build/render.php
Antoine M ebcc7a6f08
All checks were successful
continuous-integration/drone/push Build is passing
fixing problem whit return when no relatedPostId
2024-12-17 17:14:02 +01:00

13 lines
427 B
PHP

<?php
$relatedPostId = isset($attributes['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>