9 lines
249 B
PHP
9 lines
249 B
PHP
<!-- #### ACCES CONSULTATION #### -->
|
|
<?php
|
|
$composition_id = 2425;
|
|
$acces_consultation_content = get_post_field('post_content', $composition_id);
|
|
|
|
if ($acces_consultation_content) {
|
|
echo do_blocks($acces_consultation_content);
|
|
}
|
|
?>
|