Comments On Pages
-
I want comments on my pages and when I add the following code <?php comments_template(); ?> it makes my sidebar go UNDERNEATH my content. Here is how I coded it on page.php:
<?php get_header(); ?>
<div id=”main”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=”post”>
<div class=”post-title”><img src=”https://kisschanel.com/hearts.jpg” style=”float:left” alt=”” /> ” style=”text-decoration:none;” rel=”bookmark” title=”Permanent Link: <?phpthe_title(); ?>”><?php the_ttftitle(); ?>
</div><div class=”entrytext”>
<div align=”justify”><?php the_content(‘<p class=”serif”>Read the rest of this page »</p>’); ?></div>
<?php link_pages(‘<p>Pages: ‘, ‘</p>’, ‘number’); ?>
</div>
</div>
<?php comments_template(); ?>
<?php endwhile; endif; ?></div>
<?php get_sidebar(); ?>
<?php get_footer(); ?><img src=”https://chanellie.com/footer.jpg” alt=”” />
</div>Any suggestions or reason why this is happening? I tried moving it to different places but it just makes it worse. My site is chanellie.com
- The topic ‘Comments On Pages’ is closed to new replies.