homegrade_blocks_production/build/questions-container/render.php
2023-08-03 10:32:29 +02:00

18 lines
331 B
PHP

<?php
$relatedPostId = $attributes['relatedPostId'];
$relatedPost = get_post($relatedPostId);
echo '<pre>';
// print_r($relatedPostID);
// print_r($relatedPost);
echo '</pre>';
?>
<section class="questions-container-block">
<h2><?php echo $relatedPost->post_title ?></h2>
<?php echo $relatedPost->post_content ?>
</section>