Exemple #1
0
function prologue_get_comment_depth( $comment_id ) {
	return prologue_comment_depth_loop( $comment_id, 1 );
}
function prologue_get_comment_depth($comment_id)
{
    $depth = 1;
    $depth = prologue_comment_depth_loop($comment_id, $depth);
    return $depth;
}