【发布时间】:2011-10-31 11:36:07
【问题描述】:
如何在 Wordpress 中删除回复中的电子邮件和网站部分?
像这样:http://sceper.eu/2011/10/manson-family-blood-on-the-wall-2011-cr.html
只在 Leave a Reply 中看到 Name (leave blank for Anonymous)
我正在使用 wordpress 3.2.1 并使用默认的 Wordpress cmets
((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" /></p>',
但这行不通 我认为仅删除此代码是不够的!
现在我该怎么办?
【问题讨论】: