前面跟大家分享的『WordPress插件Comment Link Remove and Other Comment Tools,删除评论网址字段』一文,通过安装插件可轻松删除前端评论中的网址字段,不过有些站长不喜欢安装插件,那么是否可以通过纯代码去掉网址字段呢?
那是肯定的,只需要将以下代码添加到当前主题的functions.php文件中并保存更新文件即可。
// 删除前端评论中的网址字段
add_filter( 'comment_form_default_fields', 'boke112_remove_website_field' );function boke112_remove_website_field( $fields ) {if(isset($fields['url'])){unset($fields['url']);}return $fields;
}
不过以上代码并不适用于所有的WordPress主题,比如WordPress默认主题Twenty Twenty-Four就可以去掉网址字段,但是对于一些主题却无能为力,需要手动删除其中的网址字段代码才行。
比如免费主题JianYue,需要编辑主题内的comments.php文件,将以下代码删除才行:
<p class="comment-form-url">
<input type="text" name="url" id="url" class="commenttext" value="<?php echo $comment_author_url; ?>" tabindex="3" />
<label for="url">网址</label>
</p>
其他主题的操作方法一样,如果代码不生效的话,只需要找到该主题的comments.php文件,将其中的网址字段删除即可。
来源:WordPress如何删除前端评论中的网址字段? - boke112百科