Почему на странице (page) в Wordpress уезжает вправо контент?
Здравствуйте. У меня почему-то содержимое страницы (текст) уезжает вправо. Проверял page.php и что бы там ни вводил - все уезжает. Проблема непонятная, потому что в странице поста single.php все в порядке и ничего не уезжает. Проблема именно с page.php! Что делать?
<!-- single.php -->
<?php get_header();?>
<?php get_sidebar(); ?>
<main>
<section>
<p><?php the_post();?></p>
<?php
get_template_part( 'template-parts/content', get_post_type() );
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
?>
</section>
</main>
<?php
get_footer(); ?>
<!-- page.php -->
<?php get_header();?>
<div id="primary" class="content-area">
<main id="main" class="site-main">
<?php
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content', 'page' );
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
endwhile; // End of the loop.
?>
</main><!-- #main -->
</div><!-- #primary -->
<?php
get_sidebar();
get_footer(); ?>
Понятие "уезжает вправо контент" понятно только тебе - т.к. только ты видел свою проблему. Больше помочь не могу ибо нифига нет фактов и самого пациента
<!-- single.php -->
<?php get_header();?>
<?php get_sidebar(); ?>
<main>
<section>
<p><?php the_post();?></p>
<?php
get_template_part( 'template-parts/content', get_post_type() );
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
?>
</section>
</main>
<?php
get_footer(); ?>
<!-- page.php -->
<?php get_header();?>
<div id="primary" class="content-area">
<main id="main" class="site-main">
<?php
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content', 'page' );
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
endwhile; // End of the loop.
?>
</main><!-- #main -->
</div><!-- #primary -->
<?php
get_sidebar();
get_footer(); ?>