Wo kommt das genau hin? Hier der Inhalt der page.php:
PHP
<?php include('header.php'); ?>
<div id="container" class="clearfix">
<?php include('sidebar.php'); ?>
<div id="topcontentdouble"></div>
<div id="content">
<div class="contentright">
<div class="post">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; endif; ?>
</div>
</div>
</div>
<div id="bottomcontentdouble">
</div>
</div> <!-- Closes the container div-->
<?php include('footer.php'); ?>
Alles anzeigen
Sorry, ich kenne mich nicht aus mit php.
Vielen Dank!
Ich habe es jetzt mal so gemacht, wobei das nicht funktioniert:
PHP
<?php include('header.php'); ?>
<div id="container" class="clearfix">
<?php include('sidebar.php'); ?>
<div id="topcontentdouble"></div>
<div id="content">
<div class="contentright">
<div class="post">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; endif; ?>
</div>
</div>
</div>
<div id="bottomcontentdouble">
</div>
</div> <!-- Closes the container div-->
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php comments_template(); ?> //diese Zeile ein
<?php endwhile; endif; ?>
<?php include('footer.php'); ?>
Alles anzeigen