Może to jakiś błąd składni w szablonie strony.
W divie content we wpisie masz single_left i sidebar, natomiast w jak mniemam stronie składnia wygląda inaczej. Spróbuj przekopiować z pliku single.php do page.php te divy
<div id="single_left">
<div id="sidebar">
<div class="clear"></div>
</div>
Oczywiście pracuj na kopii 😉
Właśnie nie mogę dojść do tego co zmienić. W postach jest normalnie, a w stronach już nie. Co bym mogła zmienić? Poniżej mój cały kod z page.php:
<?php get_header(); ?>
<div id=”single_left”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h1><?php the_title(); ?></h1>
<?php the_content(); ?>
<?php //comments_template(); ?>
<div class=”span6 comment_margin leave_comment”>
<div id=”respond-wrap”>
<div class=”cancel_reply”><div class=”round_cancel”></div></div>
<div id=”comment_form”>
<div id=”respond” class=”comment-respond”>
<input type=”hidden” name=”comment_parent” id=”comment_parent” value=”” />
</div>
<?php endwhile; else: ?>
<h3>Sorry, no posts matched your criteria.</h3>
<?php endif; ?>
</div><!–//single_left–>
<?php get_sidebar(); ?>
<div class=”clear”></div>
<?php get_footer(); ?>