40 lines
955 B
PHP
40 lines
955 B
PHP
<?php get_header(); ?>
|
|
|
|
<?php
|
|
$current_post_type = get_post_type();
|
|
|
|
?>
|
|
|
|
<main id="content" class="site-content flex-grow">
|
|
<?php if ($current_post_type === 'analyses-etudes') : ?>
|
|
<?php get_template_part('template-parts/analyses-etudes/archive-header'); ?>
|
|
<?php elseif ($current_post_type === 'expositions') : ?>
|
|
<?php get_template_part('template-parts/expositions/archive-header'); ?>
|
|
<?php endif; ?>
|
|
|
|
<?php get_template_part('template-parts/expositions/archive-latest-parutions', null, array()); ?>
|
|
|
|
<!-- #### SOUTENIR #### -->
|
|
<?php
|
|
$composition_id = 988;
|
|
$soutenir_content = get_post_field('post_content', $composition_id);
|
|
|
|
if ($soutenir_content) {
|
|
echo do_blocks($soutenir_content);
|
|
}
|
|
?>
|
|
|
|
<!-- #### INFOLETTRE #### -->
|
|
<?php
|
|
$composition_id = 992;
|
|
$_infolettre_content = get_post_field('post_content', $composition_id);
|
|
|
|
if ($_infolettre_content) {
|
|
echo do_blocks($_infolettre_content);
|
|
}
|
|
?>
|
|
</main>
|
|
|
|
<?php
|
|
get_footer();
|