워드프레스 – 숏코드로 댓글 입력 폼 표시하기

댓글 입력폼을 보여줄 위치에 [danbi_comment_form]을 삽입합니다.
<?php>
add_shortcode( 'danbi_comment_form', 'danbi_comment_form_shortcode' );
function danbi_comment_form_shortcode() {
    ob_start();
    comment_form();
    $cform = ob_get_contents();
    ob_end_clean();
    return $cform;
 }