Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function remove_comment_website_field($fields) {
- unset($fields['url']);
- return $fields;
- }
- add_action( 'after_setup_theme', 'fr_add_comment_url_filter' );
- function fr_add_comment_url_filter() {
- add_filter('comment_form_default_fields','remove_comment_website_field');
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement