I just need to add coments into the post page. But it seems my coder has stopped making contact with me, so I'm stuck trying to finish it myself. What's the code I need? I tried to copy and paste the Coments code into the static.sidebar.php file I believe that was the one that changes it. But it ruins the whole page. Anyone care to help, where to place the code, and what is the stock code. Much appricated!--
<div class="entry"> <?php comments_template(); ?> </div> This is mostly placed in Single.PHP File of your Theme, after the Post Completion. Suppose after this Entry <?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?> But you can put it anywhere in the Template. For e.g. to put it in the Main page, you'll have to use the 1st Code in the Page.Php after the Post Script Ends. P.S. Donot Fiddle with your Comments.php File until you know what you are doing. I didn't really understood your meaning about the stock code. Mind elaborating it a little.
I'm just trying to insert the coment box on the post page, by stock I ment.. The basic coment box, not designed or anything.. But thanks for helping so far, I'll try that tonight.
Thats EXACTLY what he gave you above the STOCK wordpress code .... the <div class="entry"> <?php comments_template(); ?> </div> Brings the comments into the template with the css , you need the STOCK css at least to position the comment box as wordpress is all css
worked!, had to do a little tweaking to figure out where to insert the code, as I don't use that <?wp-link.. code anywhere. but it worked thank you both!--