[wp-testers] Tested 2.7 threaded comments...

Idled Soul idledsoul at gmail.com
Sat Sep 13 01:21:30 GMT 2008


DD32 wrote:
> Just a note on this:
> It seems setting a depth of 0 currently results in, A depth of zero!, 
> Ie. You cannot nest comments at all.
>
> I've got a patch to change it from:
> <?php if ( $depth < $args['depth'] ) echo 
> comment_reply_link(array('add_below' => 'div-comment')) ?>
> to
> <?php if ( 0 == $args['depth'] || $depth < $args['depth'] ) echo 
> comment_reply_link(array('add_below' => 'div-comment')) ?>
>
> which would result in the result that Ryan was expecting :)

Thanks Ryan and DD32 for explaining this, and then creating the patch 
DD32. :D Now, since your patch was committed to Trunk, using this 
function in comments.php file:

wp_list_comments(array('depth' => 0));

would allow unlimited Comment Threading, right? Or, what exactly will work to allow unlimited Threading? Thanks in advance!



More information about the wp-testers mailing list