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;
}
2011
09.01

Recently I finished a WordPress MultiSite project, for one of the biggest blog networks here in Hungary.
They are switching to WordPress ;)

But, the question for today is how can we integrate a 3rd party authentication method in WordPress, and on the hand how can we let the super admin users to login WordPress credetials, without having a valid username/password in the 3rd party authentication system.

Sounds intresting?

Let’s go ;)

Read More >>