10 lines
362 B
PHP
10 lines
362 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" tabindex="-1"><?php echo $relatedPost->post_title ?></h2>
|
|
<?php echo $relatedPost->post_content ?>
|
|
</section>
|