摆脱 WP二十主题中的 url

发布于 2024-09-15 11:48:35 字数 113 浏览 2 评论 0原文

在 WordPress 中,v3.0 中的默认主题是二十。 我正在尝试从评论表单中删除网址框。 与过去的版本一样,查看 comments.php 似乎没有提及它。

如何从该主题的评论中删除网址框?

In wordpress the default theme in v3.0 is twentyten.
I'm trying to remove the url box from the comments form.
Looking in comments.php there seems to be no reference to it, as has been in past versions.

How do I remove the url box from comments in this theme?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

强者自强 2024-09-22 11:48:35

对于functions.php:

add_filter('comment_form_default_fields', 'filter_strip_url');

function filter_strip_url($fields)
{
    unset($fields['url']);
    return $fields;
}

For the functions.php:

add_filter('comment_form_default_fields', 'filter_strip_url');

function filter_strip_url($fields)
{
    unset($fields['url']);
    return $fields;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文