In Wordpress 2.7 Features, a new feature – Threaded Comments is introduced.
The problem is that most of the wordpress bloggers are facing is that their theme doesn’t support Threaded or Nested Comments.
To check whether Threaded Comments is supported by your current theme or not, Follow the below steps:
- Upgrade Wordpress is to 2.7 version, if not yet upgraded.
- Login to Wordpress admin and go to Settings -> Discussion
- Check on “Enable threaded (nested) comments ‘n’ levels deep”.
- Click Save changes to enable Threaded Comments.
- View any post of your blog that contains few comments.
If you see a Reply link after each comment like shown below, then your Wordpress Theme supports Threaded Comments otherwise it doesn’t support:
You will see reply links for every individual comment
My current theme doesn’t support it. I have made some changes to comments.php and style.css to support Threaded Comments. But, the changes are not yet live on my blog. I have done whole testing on my Local PC and the screenshot is taken from there. I need to do little bit of tinkering in CSS. By the way, if you are new to CSS then Learn CSS by reading this Book. Download It Free!
Continue reading this post, To implement Threaded Comments feature in your Wordpress theme (more…)


Subscribe
How to add Comment Link in Single Post – Wordpress
Thursday, January 15th, 2009Have you noticed Home Page of this blog? On the right of each Post Title you will see a balloon image which shows number of comments for the post. This is a hyper link, if clicked will take you to the comments section of the post.
Check right top of the image
Most of the themes comes with this feature. My theme also has these feature.
Now, I wanted to display the same type of Comments Link in Single Post.
This is what I did, I opened
index.phptheme file. Found the following code and copied it.<div class="comm"><span>< ?php comments_popup_link('0', '1', '% '); ?></span></div>Then, I opened
single.phpand pasted the code just above the title and saved the file.I then opened the post in the browser to see the whether the comment link is appearing in the Single post or not.
(more…)
15.01.2009 How-To, Webmasters, Wordpress 28 Comments