9 lines
253 B
PHP
9 lines
253 B
PHP
<!-- #### AUTRES PUBLICATIONS #### -->
|
|
<?php
|
|
$composition_id = 2089;
|
|
$autres_publications_content = get_post_field('post_content', $composition_id);
|
|
|
|
if ($autres_publications_content) {
|
|
echo do_blocks($autres_publications_content);
|
|
}
|
|
?>
|