Compare commits
2 Commits
43d5b67108
...
2633843395
| Author | SHA1 | Date | |
|---|---|---|---|
| 2633843395 | |||
| 7c5a401580 |
|
|
@ -12,7 +12,7 @@ $mainThematique = getMainThematique($thematique);
|
|||
$thematiqueColorSlug = $mainThematique->slug;
|
||||
$thematique_icon = get_field('taxonomy_pictures', 'thematiques' . '_' . $mainThematique->term_id)['icon'];
|
||||
|
||||
$postDescription = $attributes['postDescription'];
|
||||
$postDescription = $attributes['postDescription'] ?? null;
|
||||
|
||||
$coverUrl = $postType->name === 'videos-webinaires' && $postThumbnail ? $postThumbnail : ($thematique_icon ? $thematique_icon['url'] : null);
|
||||
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ $mainThematique = getMainThematique($thematique);
|
|||
$thematiqueColorSlug = $mainThematique->slug;
|
||||
$thematique_icon = get_field('taxonomy_pictures', 'thematiques' . '_' . $mainThematique->term_id)['icon'];
|
||||
|
||||
$postDescription = $attributes['postDescription'];
|
||||
$postDescription = $attributes['postDescription'] ?? null;
|
||||
|
||||
$coverUrl = $postType->name === 'videos-webinaires' && $postThumbnail ? $postThumbnail : ($thematique_icon ? $thematique_icon['url'] : null);
|
||||
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
<?php
|
||||
$relatedPostId = $attributes['relatedPostId'] ?? null;
|
||||
$relatedPost = get_post($relatedPostId);
|
||||
// echo $relatedPost->post_content
|
||||
?>
|
||||
|
||||
|
||||
<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 ?> -->
|
||||
<?php echo do_blocks($relatedPost->post_content) ?>
|
||||
</section>
|
||||
|
|
@ -17,4 +17,4 @@
|
|||
"devDependencies": {
|
||||
"@wordpress/scripts": "^26.9.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,11 +1,11 @@
|
|||
<?php
|
||||
$relatedPostId = $attributes['relatedPostId'] ?? null;
|
||||
$relatedPost = get_post($relatedPostId);
|
||||
// echo $relatedPost->post_content
|
||||
?>
|
||||
|
||||
|
||||
<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 ?> -->
|
||||
<?php echo do_blocks($relatedPost->post_content) ?>
|
||||
</section>
|
||||
Loading…
Reference in New Issue
Block a user