homegrade_blocks_production/blocks/questions-container/build/render.php
Antoine M 2633843395
All checks were successful
continuous-integration/drone/push Build is passing
fixing problem with do_block commentary
2024-10-07 14:38:18 +02:00

11 lines
396 B
PHP

<?php
$relatedPostId = $attributes['relatedPostId'] ?? null;
$relatedPost = get_post($relatedPostId);
// echo $relatedPost->post_content
?>
<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>