如何删除Wordpress中的回复中的电子邮件和网站部分?像这样:http://sceper.eu/2011/10/manson-family-blood-on-the-wall-2011-cr.html
只看到Name (leave blank for Anonymous)留下回复
我使用wordpress 3.2.1并使用默认的Wordpress注释
((public_html/wp-includes/comment.php
和
public_html/wp-includes/comment-template.php))
我从omment-template.php中删除了这段代码
'email' => '<p class="comment-form-email"><label for="email">' . __( 'Email' ) . '</label> ' . ( $req ? '<span class="required">*</span>' : '' ) .
'<input id="email" name="email" type="text" value="' . esc_attr( $commenter['comment_author_email'] ) . '" size="30"' . $aria_req . ' /></p>',
'url' => '<p class="comment-form-url"><label for="url">' . __( 'Website' ) . '</label>' .
'<input id="url" name="url" type="text" value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30" …Run Code Online (Sandbox Code Playgroud)