每个人,我都是Wordpress开发的新手。我开发一个插件有两个Wordpress网站。站点1将请求发送到站点2。站点2将发送一些对站点1请求的响应
网站1 index.php
看上去
$url = 'http://localhost/wordpress1/';
$get_post_id = $commentdata['comment_details']['comment_post_ID'];
$response = wp_remote_post( $url, array(
'method' => 'POST',
'timeout' => 45,
'redirection' => 5,
'httpversion' => '1.0',
'blocking' => true,
'headers' => array(),
'body' => array('comment_details'=>$commentdata,'post_details'=>$post_details),
'cookies' => array()
));
$response_data = $response['body'];
站点2:index.php
文件看起来像
$data = //some array data i will return
$sample = serialize($data);
输出:效果很好
我的要求:
我们已经在两个站点上都编写了代码,但是不想管理站点1插件代码中的所有内容如何连接两个代码单个插件页面(单个插件中的请求和响应句柄)