Код IT Загрузка примера кода…

PHP main.php
<?php get_header(); ?>

<main class="wp-block-group" style="padding:2rem">
  <h1><?php bloginfo('name'); ?></h1>
  <p><?php bloginfo('description'); ?></p>

  <?php if (have_posts()) : ?>
    <?php while (have_posts()) : the_post(); ?>
      <article <?php post_class(); ?>>
        <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
        <?php the_excerpt(); ?>
      </article>
    <?php endwhile; ?>
  <?php else : ?>
    <p>Записей пока нет.</p>
  <?php endif; ?>
</main>

<?php get_footer(); ?>
<?php get_header(); ?>

<main class="wp-block-group" style="padding:2rem">
  <h1><?php bloginfo('name'); ?></h1>
  <p><?php bloginfo('description'); ?></p>

  <?php if (have_posts()) : ?>
    <?php while (have_posts()) : the_post(); ?>
      <article <?php post_class(); ?>>
        <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
        <?php the_excerpt(); ?>
      </article>
    <?php endwhile; ?>
  <?php else : ?>
    <p>Записей пока нет.</p>
  <?php endif; ?>
</main>

<?php get_footer(); ?>