Already we had known that wordpress is light and very easy to use. There are various tips and tricks about wordpress to customizing it. For example, how to remove the words of “You may use these HTML tags and attributes: “. It’s located at the bottom of a page or a post that an option for people to leave a reply to the post.
You may use these HTML tags and attributes: a href=”” title=”” abbr title=”” acronym title=”” b blockquote cite=”” cite code del datetime=”” em i q cite=”” strike strong
The solution is a simple task but depends on your theme.
Just go to your wp-admin page, Appearance -> Editor.
On the right hand side you should see comments.php file and edit it as in the previous post. Look into comments.php, for the
1 2 3 4 5 |
<?php comment_form() ?> |
then apply this edit:
1 2 3 4 5 |
<?php comment_form(array('comment_notes_after' => '')); ?> |
Another way to do it with just css would be:
1 2 3 4 5 6 |
.form-allowed-tags { display:none;} |