Skip to content

Instantly share code, notes, and snippets.

@sjoonk
Last active August 29, 2015 14:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sjoonk/8d094259a563efdc08cc to your computer and use it in GitHub Desktop.
Save sjoonk/8d094259a563efdc08cc to your computer and use it in GitHub Desktop.
add_action( 'init', 'usefulpa_add_kakao_provider_to_wsl' );
function usefulpa_add_kakao_provider_to_wsl() {
if ( function_exists ('wsl_version') ) {
global $WORDPRESS_SOCIAL_LOGIN_PROVIDERS_CONFIG;
$WORDPRESS_SOCIAL_LOGIN_PROVIDERS_CONFIG[] = ARRAY(
"provider_id" => "Kakao",
"provider_name" => "Kakao",
"require_client_id" => true,
"callback" => true,
"new_app_link" => "https://developers.kakao.com/apps/new",
"cat" => "socialnetworks",
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment