2011
09.30
1
2
3
4
5
6
7
remove_all_filters('comment_flood_filter');
add_filter('comment_flood_filter','my_comment_flood_filter');

function my_comment_flood_filter()
{
  return false;
}

No Comment.

Add Your Comment