因为专注
所以专业

WordPress去除网址URL表单项目,去除评论昵称的链接

如果你不喜欢让“网站”这一项给你制造垃圾留言,可以去掉这一项。方法很简单,在主题的functions.php中写如下代码:

//移除网址URL表单项目
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’ );

未经允许不得转载:肖兴来SEO博客 » WordPress去除网址URL表单项目,去除评论昵称的链接
分享到: 更多 (0)

评论 3

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址
  1. #1

    Hi there, yup this post is actually nice and I have learned lot of things from it on the topic of blogging.

    thanks.

    ever-loving5年前 (2019-06-21)回复
  2. #2

    感谢分享,谢谢站长!!

    绿软吧(lvr8)3年前 (2020-11-13)回复
    • 不客气,一起努力学习。

      SEO博客3年前 (2020-11-17)回复