homegrade_blocks_production/blocks/questions-container/build/render.php
2023-08-30 18:10:52 +02:00

10 lines
348 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 ?>
</section>