How can I add comments to my WordPress theme. I tried <?php comment_form(); ?> but it doesn’t give any output. Am I missing something?
How can I add comments to my WordPress theme. I tried <?php comment_form(); ?>
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Just add the following line
inside your
single.phpwhere you want to add/display the comments template. This will add/include thecomments.phpfile in thesingletemplate and make sure thatcomments.phpis also available in your theme folder.Also you can use Disqus wordpress plugin, it’s a very nice plugin.
References: Codex and a tutorial.