コード例 #1
0
ファイル: functions.php プロジェクト: ramo01/1kapp
function prologue_get_comment_depth( $comment_id ) {
	return prologue_comment_depth_loop( $comment_id, 1 );
}
コード例 #2
0
ファイル: functions.php プロジェクト: Br3nda/openmicroblogger
function prologue_get_comment_depth($comment_id)
{
    $depth = 1;
    $depth = prologue_comment_depth_loop($comment_id, $depth);
    return $depth;
}