Click to See Complete Forum and Search --> : Comment feature codes from wordpress help


kash86uk
01-19-2011, 09:01 AM
Hi, I have got a webpage and I have installed wordpress only to use it for users to write comments.
I know wordpress is very customisable from what I have been told so far.
Does anyone know how can I find the codes on the wordpress files that has the comments codes, and the input box code for the users to write, to insert it in my own webpage that I made?
I know i will have to change my page to php, which I can do.

Also how can I allow anyone to send comments, without login in, or inserting their email address?

donatello
01-19-2011, 09:11 AM
If all you want are comments, just use Disqus (http://www.disqus.com/), it is a lot simpler.

Otherwise, go into your Wordpress "Appearances" tab. There will be a section called "comments" that you can edit.

The path should be something like this:
http://www.YOURSITE.com/wp-content/themes/YOURTHEME/comments.php

kash86uk
01-19-2011, 09:40 AM
thanks for replying. Disqus.com looks good.

I cant find this file, I found wp-comments-post.php?

Am I looking for something like this to insert on my own page from wordpress:

<?php query_posts('showposts=-1');
while (have_posts()):
the_post();
echo '<p class="blog-entry-title">';
the_title();
echo "</p>\n";
echo '<div class="item-body">';
the_content();
echo "</div>\n";
endwhile;?>

donatello
01-20-2011, 08:14 AM
That's probably it.

Back it up, then fiddle with it and see...


:)