homegrade_blocks_production/blocks/parcours-step-container/build/render.php
2024-06-26 16:48:40 +02:00

11 lines
357 B
PHP

<?php
$relatedPostId = $attributes['relatedPostId'] ?? null;
$relatedPost = get_post($relatedPostId);
?>
<section id="parcours-step-container-<?php echo $relatedPostId ?>" class="questions-container-block">
<h2 class="parcours-step-container-block__title"><?php echo $relatedPost->post_title ?></h2>
<?php echo $relatedPost->post_content ?>
</section>