18 lines
435 B
PHP
18 lines
435 B
PHP
<?php
|
|
|
|
$relatedPostId = $attributes['relatedPostId'] ?? null;
|
|
$relatedPost = get_post($relatedPostId);
|
|
|
|
echo '<pre>';
|
|
// print_r($relatedPostID);
|
|
// print_r($relatedPost);
|
|
echo '</pre>';
|
|
|
|
|
|
?>
|
|
|
|
|
|
<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>
|