Need help to add comments php code to WordPress Page

2 replies
Hi,

I need some help.

I had bought a WSO which revamped my Wordpress blog
but I am not able to contact the warrior.

Anyway, I need some help to insert the comments php code
after the content body of a Wordpress page (not blog post)

What is the php code I should add
and where should I add it?

Wondering if you can point me to the right source...

Below is my page.php

Code:
<?php get_header(); ?>

<div id="content">
<div id="content1">
    <div id="contentleft">
    
    <!-- left_area -->

     <div class="postarea">

        <?php include(TEMPLATEPATH."/breadcrumb.php");?>

           <div class="oldman">

            <div class="icn">

                <?php if (have_posts()) : while (have_posts()) : the_post(); ?>

            <h1><?php the_title(); ?></h1> 

<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>

                <?php the_content(__('Read more'));?>




                <?php endwhile; else: ?>           


            <p><?php _e('Sorry, no posts matched your criteria.'); ?></p><?php endif; ?>        

             </div>        

      </div>

  </div>

 <!-- end:left_area -->
        
    </div>
    
    
<?php include(TEMPLATEPATH."/sidebar.php");?>
    <div class="clearfloat"></div>     
</div>
</div>

<!-- The main column ends  -->

<?php get_footer(); ?>
Thanks in advance,
John
#add #code #comments #page #php #wordpress

Trending Topics