2

我在 wordpress 中有两个网站

主站点

 1.)http://www.abc.com

其他网站

 2.)http://www.xyz.com

mainsite我想发送用户名密码othersite为此我正在使用此代码

    $creds = array();
    echo $creds['user_login'] = "sachin";
    echo $creds['user_password'] = "pass";
    $user = wp_signon( $creds, false );
   // echo ABSPATH . WPINC;
        if ( is_wp_error($user) ){
        echo $user->get_error_message();
            if( !class_exists( 'WP_Http' ) )
                 include_once( ABSPATH . WPINC. '/class-http.php' );

                        // You would edit the following:
            $username = $creds['user_login']; // Twitter login
            $password = $creds['user_password']; // Twitter password
            $message = "Hey neat, I'm posting with the API";
            // Now, the HTTP request:
            $api_url = 'http://www.xyz.com';
            $body = array( 'status' => $message );
            $headers = array( 'Authorization' => 'Basic '.base64_encode("$username:$password") );
            $request = new WP_Http;
            $result = $request->request( $api_url , array( 'method' => 'POST', 'body' => $body, 'headers' => $headers ) );
           // echo"<pre>";print_r($result['body']);

我不知道我是否以正确的方式发送 wp http 请求,但我的问题是我想要这个用户名和密码(我从主站点发送)到其他服务器(http://www.xyz.com

我该怎么做,请建议我。请向我提供宝贵的建议,我可以如何发送username以及password从一台服务器到另一台服务器。

谢谢

4

1 回答 1

0

要共享 2 个 wordpress 安装,以便用户可以访问两者,那么此页面将允许您执行此操作。

http://www.remicorson.com/share-users-database-on-different-wordpress-installs/

我想这就是你想要做的?

于 2014-12-07T18:06:22.053 回答