Facebook登录wordpress没有插件

时间:2012-08-22 09:05:43

标签: php facebook wordpress

我正在为网站访问者提供自定义登录页面,并希望包含Login with Facebook按钮,以便应用程序检查用户电子邮件是否已注册,如果是,则会将用户登录。

使用wp_signon我可以通过提供电子邮件和密码来登录用户,但在这种情况下我没有用户的密码,那么有没有一种方法可以在不使用插件的情况下提供Facebook登录按钮? / p>

2 个答案:

答案 0 :(得分:0)

如果你想在没有插件的情况下这样做,那么你需要自己实现OAuth。您可以使用本文作为参考,从头开始为您的主题创建一个没有插件的Facebook登录按钮。

WordPress Frontend Facebook Login

答案 1 :(得分:-1)

使用此代码并将APP ID替换为您的域...

<html>
    <head>
      <title>Login with Facebook</title>
    </head>
    <body>

      <div id="fb-root"></div>
      <script>
        window.fbAsyncInit = function() {
          FB.init({
        appId      : 'YOUR_APP_ID', // App ID
        channelUrl : '//WWW.YOUR_DOMAIN.COM/channel.html', // Channel File
        status     : true, // check login status
        cookie     : true, // enable cookies to allow the server to access the session
        xfbml      : true  // parse XFBML
      });
    };
    // Load the SDK Asynchronously
    (function(d){
       var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
       if (d.getElementById(id)) {return;}
       js = d.createElement('script'); js.id = id; js.async = true;
       js.src = "//connect.facebook.net/en_US/all.js";
       ref.parentNode.insertBefore(js, ref);
     }(document));
  </script>

  <div class="fb-login-button">Login with Facebook</div>

</body>