9 lines
216 B
PHP
9 lines
216 B
PHP
<!-- #### INFOLETTRE #### -->
|
|
<?php
|
|
$composition_id = 992;
|
|
$infolettre_content = get_post_field('post_content', $composition_id);
|
|
|
|
if ($infolettre_content) {
|
|
echo do_blocks($infolettre_content);
|
|
}
|
|
?>
|