我找到了一个非常有效的解决方案。我最终复制了bbPress Reply Walker类,它是WordPress Walker类的扩展,并修改了一些参数以满足我的需要。我还必须创建自己的函数来列出回复,类似于bbPress的列表回复函数。list replies函数具有如下自定义参数:
$args = array(
\'post_type\' => \'reply\',
\'post_parent\' => $postID,
\'posts_per_page\' => 50,
\'orderby\' => \'date\',
\'order\' => \'ASC\',
\'hierarchical\' => true,
\'ignore_sticky_posts\' => true,
)