FEATURE Introducing reusable composition-based components
This commit is contained in:
parent
de78d6e4cd
commit
7205e75f89
9
template-parts/compositions/animation-sur-demande.php
Normal file
9
template-parts/compositions/animation-sur-demande.php
Normal 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);
|
||||
}
|
||||
?>
|
||||
9
template-parts/compositions/conferences-sur-demande.php
Normal file
9
template-parts/compositions/conferences-sur-demande.php
Normal 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);
|
||||
}
|
||||
?>
|
||||
9
template-parts/compositions/formation-sur-demande.php
Normal file
9
template-parts/compositions/formation-sur-demande.php
Normal 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);
|
||||
}
|
||||
?>
|
||||
9
template-parts/compositions/infolettre.php
Normal file
9
template-parts/compositions/infolettre.php
Normal 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);
|
||||
}
|
||||
?>
|
||||
9
template-parts/compositions/soutenir.php
Normal file
9
template-parts/compositions/soutenir.php
Normal 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);
|
||||
}
|
||||
?>
|
||||
Loading…
Reference in New Issue
Block a user