22 lines
580 B
PHP
22 lines
580 B
PHP
<div class="<?php
|
||
if( is_page(8) ){
|
||
echo 'wave' . ' wave-no-bottom wave-no-top';
|
||
}
|
||
?>">
|
||
<div class="compound">
|
||
<div class="compound__text">
|
||
<?php
|
||
if (is_page_template('templates/departure-quests.php')) {
|
||
echo the_field('departure_bottom_description');
|
||
} else {
|
||
// Выводим информацию о квестах
|
||
$post = get_post(8);
|
||
$content = $post->post_content;
|
||
echo $content;
|
||
}
|
||
?>
|
||
</div>
|
||
|
||
<div class="turn">Читать дальше...</div>
|
||
</div>
|
||
</div>
|