14 lines
295 B
PHP
14 lines
295 B
PHP
<?php
|
|
// ─── Контентная область (the_content) ───
|
|
if (! defined('ABSPATH')) {
|
|
exit;
|
|
}
|
|
?>
|
|
<section class="content-main_block">
|
|
<div class="container">
|
|
<div class="main_content">
|
|
<?php the_content(); ?>
|
|
</div>
|
|
</div>
|
|
</section>
|