9 lines
261 B
PHP
9 lines
261 B
PHP
<!-- #### 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);
|
|
}
|
|
?>
|