댓글을 다는 사용자에게 혼란만 주는.. 별로 필요없는 입력란이라 생각되어 워드프레스 댓글 입력 폼에서 '웹사이트'를 제거하였다.

 

아래와 같이 두줄만 주석처리하면 된다.

# vim wp-includes/comment-template.php

    $fields   =  array(
        'author' => '<p class="comment-form-author">' . '<label for="author">' . __( 'Name' ) . ( $req ? ' <span class="required">*</span>' : '' ) . '</label> ' .
                    '<input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30" maxlength="245"' . $aria_req . $html_req . ' /></p>',
        'email'  => '<p class="comment-form-email"><label for="email">' . __( 'Email' ) . ( $req ? ' <span class="required">*</span>' : '' ) . '</label> ' .
                    '<input id="email" name="email" ' . ( $html5 ? 'type="email"' : 'type="text"' ) . ' value="' . esc_attr(  $commenter['comment_author_email'] ) . '" size="30" maxlength="100" aria-describedby="email-notes"' . $aria_req . $html_req  . ' /></p>',
        //'url'    => '<p class="comment-form-url"><label for="url">' . __( 'Website' ) . '</label> ' .
         //           '<input id="url" name="url" ' . ( $html5 ? 'type="url"' : 'type="text"' ) . ' value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30" maxlength="200" /></p>',
    );

'url' 부분과 그 다음 라인 주석처리. (2203 라인쯤 위치)

 

2020.02.15 (WordPress 5.3.2 버전 기준) 2310번 라인 이후 아래와 같이 주석처리

2020.09.01 (WordPress 5.5 버전 기준) 2360번 라인 이후 아래와 같이 주석처리

# vim wp-includes/comment-template.php

(WordPress 5.4 버전 기준) 2331 라인 이후

 

주석처리 후 아래처럼 웹사이트 입력폼이 없어졌다.

wordpress 댓글 부분의 웹사이트 입력란 삭제.
태그:                 

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다