开发者

Get rid of url in WP twentyten theme

开发者 https://www.devze.com 2023-01-12 05:40 出处:网络
In wordpress the default theme in v3.0 is twentyten. I\'m trying to remove the url box from the comments form.

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 开发者_JAVA百科no reference to it, as has been in past versions.

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


For the functions.php:

add_filter('comment_form_default_fields', 'filter_strip_url');

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

精彩评论

暂无评论...
验证码 换一张
取 消