Advertisement
Guest User

Untitled

a guest
Feb 7th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. //* Remove comment form allowed tags
  2.  
  3. add_filter( 'comment_form_defaults', 'sv_remove_comment_form_allowed_tags' );
  4. function sv_remove_comment_form_allowed_tags( $defaults ) {
  5. $defaults['comment_notes_after'] = '';
  6. return $defaults;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement