Preferred method to get comment reply link for comments with a depth of 0
There’s no such thing as a depth 0 comment, and it should never happen, here is your problem: function start_el(&$output, $item, $depth = 0, $args = array(), $id = 0) { $output .= var_dump($depth); No depth incrementing is happening so it is always 0. start_el has several responsibilities as part of the walking, and for … Read more