homegrade_blocks_production/blocks/questions-container/build/render.php

11 lines
410 B
PHP

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