FEATURE Introducing reusable composition-based components

This commit is contained in:
Antoine M 2026-03-03 17:04:25 +01:00
parent de78d6e4cd
commit 7205e75f89
5 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,9 @@
<!-- #### ANIMATION SUR DEMANDE #### -->
<?php
$composition_id = 1560;
$animation_sur_demande_content = get_post_field('post_content', $composition_id);
if ($animation_sur_demande_content) {
echo do_blocks($animation_sur_demande_content);
}
?>

View File

@ -0,0 +1,9 @@
<!-- #### CONFERENCES SUR DEMANDE #### -->
<?php
$composition_id = 1559;
$conferences_sur_demande_content = get_post_field('post_content', $composition_id);
if ($conferences_sur_demande_content) {
echo do_blocks($conferences_sur_demande_content);
}
?>

View File

@ -0,0 +1,9 @@
<!-- #### FORMATION SUR DEMANDE #### -->
<?php
$composition_id = 1540;
$formation_sur_demande_content = get_post_field('post_content', $composition_id);
if ($formation_sur_demande_content) {
echo do_blocks($formation_sur_demande_content);
}
?>

View File

@ -0,0 +1,9 @@
<!-- #### INFOLETTRE #### -->
<?php
$composition_id = 992;
$infolettre_content = get_post_field('post_content', $composition_id);
if ($infolettre_content) {
echo do_blocks($infolettre_content);
}
?>

View File

@ -0,0 +1,9 @@
<!-- #### SOUTENIR #### -->
<?php
$composition_id = 988;
$soutenir_content = get_post_field('post_content', $composition_id);
if ($soutenir_content) {
echo do_blocks($soutenir_content);
}
?>