예제 #1
0
파일: functions.php 프로젝트: ramo01/1kapp
function prologue_get_comment_depth( $comment_id ) {
	return prologue_comment_depth_loop( $comment_id, 1 );
}
예제 #2
0
function prologue_get_comment_depth($comment_id)
{
    $depth = 1;
    $depth = prologue_comment_depth_loop($comment_id, $depth);
    return $depth;
}