Post Pic

Threaded Comments In Wordpress

No Comments

Any self-respecting blog should have nested (threaded) comments to allow for readers to reply to comments. Robot Forest added just that today and here’s how to do it.

More in Web Design | August 26th, 2009

It’s actually quite simple. First, log in and go to your Settings > Discussions. There you’ll be able to enable threaded comments and how many levels of replies to allow. Next you’ll want to check to see if that’s all you needed to do, so simple head on over to a post with comments and see if a Reply link has been added. If not, open your header.php file and add the following line before wp_head

if ( is_singular() ) wp_enqueue_script( ‘comment-reply’ );

It should look something like this:

<?php if ( is_singular() ) wp_enqueue_script( ‘comment-reply’ ); wp_head(); ?>

After that you’re pretty much done. All you have to do now is theme your threads. Head on over to this site to do so:
http://www.idratherbewriting.com/2009/05/31/wordpresss-threaded-comments/

    Related Posts
  1. Brizzly: Twitter And Facebook In One Place UPDATED
  2. Robot Forest Is Now Mobile With WPTouch And So Can You
  3. Wordpress For iPhone Wishlist
  4. Bringing Back The Refresh Button To Safari 4
  5. Ego For iPhone Checks All Of Your Stats

Tags:

Leave a Reply