homegrade_theme_production/single-parcours.php

10 lines
197 B
PHP

<?php
$isParentPage = get_queried_object()->post_parent === 0;
if ($isParentPage) {
get_template_part('single-parcours-parent');
} else {
get_template_part('single-parcours-child');
}