27 lines
605 B
PHP
27 lines
605 B
PHP
<?php
|
|
|
|
$relatedPostId = $attributes['relatedPostId'];
|
|
$relatedPost = get_post($relatedPostId);
|
|
|
|
$term = get_the_terms(get_the_ID(), 'thematiques')[0];
|
|
|
|
$relatedPosts = get_posts(array(
|
|
'post_per_page' => 30,
|
|
'post_status' => 'publish',
|
|
'post_type' => 'fiche-questions',
|
|
'thematiques' => $term->ID,
|
|
));
|
|
?>
|
|
|
|
|
|
<section class="questions-container-block">
|
|
|
|
<?php foreach ($relatedPosts as $post) : ?>
|
|
<article class="questions-container-block__question-content">
|
|
<h2><?php echo $post->post_title ?></h2>
|
|
<div><?php echo $post->post_content ?></div>
|
|
</article>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
</section>
|