homegrade_blocks_production/blocks/questions-container/build/render.php
Antoine M 403ddcdbec
All checks were successful
continuous-integration/drone/push Build is passing
accepting drafts in related post combobox control
2025-03-13 11:26:07 +01:00

12 lines
426 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>