Код Worpress шаблона. Пишу строго по уроку
www.youtube.com/watch?v=k7olvEeBM2I (не реклама).
Почему в DOM один контейнер 'article' как матрешка вкладывается другой?
Нужно чтобы они следовали один за другим.
<?php
get_header();
if (have_posts()) :
while (have_posts()) : the_post(); ?>
<article class="post">
<h2><a href="<?php the_permalink(); ?>"> <?php the_title(); ?> </a></h2>
<?php the_content(); ?>
</arctile>
<?php endwhile;
else :
echo '<p>No content found</p>';
endif;
get_footer();
?>
Заранее спасибо за помощь!