- A+
做博客不做评论,对于博客说很不友好,为了更好的和网友互动最好是加上评论,不过有多少人和我一样不喜欢那个网址框?为了更好的增加互动性本站打算重新启用评论功能.方法如下二种:
一 css中加入代码
去除评论的电子邮件和站点框
1、打开站点安装文件夹中,--> wp-content --> themes --> 您的主题文件夹
2、有记事本打开style.css文件
3、在代码的末尾,增加:
.comment-form-url{
display: none;
}
二 function.php中加入如下代码
//移除网址表单
function url_filtered($fields)
{
if(isset($fields['url']))
unset($fields['url']);
return $fields;
}
add_filter('comment_form_default_fields', 'url_filtered');
//移除评论人名字的链接
function disable_comment_author_links( $author_link ){
return strip_tags( $author_link );
}
add_filter( 'get_comment_author_link', 'disable_comment_author_links' );
只需加入代码,简单真的很实用
三本站自用主题begin,可以直接搜commens.php文件然后将文章中的的下列代码删除即可
<p class="comment-form-url">
<label for="url"><?php _e( '网址', 'begin' ); ?></label>
<input type="text" name="url" id="url" class="commenttext" value="<?php echo $comment_author_url; ?>" tabindex="4" />
</p>