Need Help with Custom filer-Plugin
-
Hello recently i have found a hack that allowed me to remove the website field from the comment box.
Here is the plugin:
<?php
/*
Plugin Name: WordPress MOD
*/
add_filter(‘comment_form_default_fields’, ‘url_filtered’);
function url_filtered($fields)
{
if(isset($fields[‘url’]))
unset($fields[‘url’]);
return $fields;
}
?>and now is there any way i could use the similar code to remove this massage from the comment box:
You may use these HTML tags and attributes: <abbr title=””> <acronym title=””> <b>
<cite>
<del datetime=""> <em> <i> <q cite=""> <strike> <strong> </strong></em>
Thx for your help!!!
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Need Help with Custom filer-Plugin’ is closed to new replies.