<?php
/**
* Plugin Name: Remove URL from Comments
* Plugin URI: http://www.your-website.com/
* Description: Removes website field from the comments form.
* Version: 0.1
* Author: Your Name
* Author URI: http://www.your-website.com/
* License: GPL2
*/
function my_custom_comment_fields( $fields ){
if(isset($fields['url']))
unset($fields['url']);
return $fields;
}
add_filter( 'comment_form_default_fields', 'my_custom_comment_fields' );
There are currently 1 users browsing this thread. (0 members and 1 guests)