wordpress 多站点文章同步发布多种同步方式技术探讨

 

目标:单独同后台、同步发布到各个站点、包括自动上传图片、最好能兼容最新的区块模板(难度高)

 

方案一:使用wordpress插件

比较流行的有:Multisite Post Duplicator 、WP Multisite Content Copier、MultiSite Clone Duplicator、Syndicate Press、WordPressXMLRPCTools

Evernote Sync:关于WordPress插件Evernote Sync同步文章到wordpress站点的机制 – Devin

缺点:会加重wordpress、减慢运行速度

优点:不用考虑图片上传、区块模板问题

方案二:使用 Jetpack 插件提供的公共发言 API

1、在 Jetpack 管理面板中,启用公共发言 API。这需要您将 Jetpack 连接到 WordPress.com 帐户,并为您的站点启用公共发言 API 权限。
2、获取 API 密钥。您可以在 Jetpack 管理面板中找到它。
3、在要同步文章的站点中安装并启用 Jetpack 插件。
4、在这些站点中,使用以下代码向您的主站点发送请求以同步文章:

function my_sync_function($post_id) {
$post_data = get_post($post_id, ARRAY_A);
$post_data[‘post_password’] = ‘mypassword’; // 如果需要设置文章密码,可以在此处设置
$post_data[‘post_type’] = ‘post’; // 文章类型
$post_data[‘post_status’] = ‘publish’; // 文章状态

$url = ‘https://yoursite.wordpress.com/wp-json/wp/v2/posts’; // 主站点的公共发言 API URL
$api_key = ‘your_api_key’; // 您的 Jetpack 公共发言 API 密钥

$args = array(
‘body’ => json_encode($post_data),
‘headers’ => array(
‘Authorization’ => ‘Bearer ‘ . $api_key,
‘Content-Type’ => ‘application/json’,
),
‘method’ => ‘POST’,
);

wp_remote_post($url, $args); // 向主站点发送 POST 请求
}
add_action(‘publish_post’, ‘my_sync_function’); // 将此函数绑定到“发布文章”动作
5、替换 $url 和 $api_key 变量的值。$url 应该是您的主站点的公共发言 API URL,$api_key 应该是您在第 2 步中获取的 Jetpack 公共发言 API 密钥。
6、将此代码添加到您的主题的 functions.php 文件中。
7、在任何要同步文章的站点上发布文章。文章将自动同步到您的主站点。如果您有多个要同步的站点,请重复步骤 3 到 6。

优点:还没有测试

缺点:加重wordpress的插件、减慢运行速度

方案三:通过XML-RPC方式

1、网站A(自动发布网站设置):远程发布的设置可能隐藏,所以先安装Control XML-RPC publishing,然后在”设置”->”撰写”里面开启远程发布

2、网站B(手动发布网站设置):安装插件 Syndicate Out 并设置好网站A的首页地址,后台用户名密码

这样在网站B里面发布的文章就会被自动同步到网站A里面了。
神奇的是,两个博客主题不同,上传的图片也自动同步过去了;
也有遗憾,以前发布的文章不会自动同步,新发布的文章才会在另一个服务器发布。

方案四:用代码实现

思路:在副网站创建API,API 利用wp_insert_post()函数来创建文章。主网站用cURL模拟 POST 请求副网站的API。支持同步文章标题、内容、类型、分类、标签,分类需要另一个站点也有创建相同名称的分类,别名和ID不需要相同。

在副博客站点的根目录创建一个文件,命名为xxxxxxxx-post.php,代码如下:并设置用于启动 API 的 key

<?php
/*
文章发表后同步到另一个站点(接收)
*/
define(‘WP_USE_THEMES’, false);
require_once(“wp-load.php”);
$key=’xxxxxxxxxx’; //设置API的密钥,建议设置复杂
if($_POST[‘key’]==$key){
$categorys=explode(‘,’,$_POST[‘category’]);
$category=array();
for($x=1;$x<count($categorys);$x++) {
$category[$x-1]=get_cat_ID($categorys[$x]);
}
$info = array(
‘post_title’ => $_POST[‘title’],
‘post_content’ => $_POST[‘content’],
‘post_status’ => ‘publish’,
‘post_author’ => 1, //发布文章的作者ID,1 为管理员
‘post_date’ => $_POST[‘date’],
‘tags_input’ => $_POST[‘tags’],
‘post_category’ => $category,
‘post_type’ => $_POST[‘type’]
);
wp_insert_post( $info );
}
?>
在主博客主题的functions.php文件的最后一个?>前加入已下代码,并设置 key,修改 API 地址

/*
文章发表后同步到另一个站点(发送)
*/
add_action(‘publish_post’, ‘E_sync_post’); //钩子,在文章发布时执行
function E_sync_post($post_ID) {
$key=’xxxxxxxxxxxxx’; //输入你设置的密钥
$url=’http://xxxxxx/xxxxxxxxxxxx-post.php’;//API地址(接受同步文章博客地址,例:xx表示为发布文章主博客,那填写API地址就是负博客地址)
$post_info = get_post($post_ID);
if ( $post_info->post_status == ‘publish’ && $_POST[‘original_post_status’] != ‘publish’ ) {
$title=$_POST[‘post_title’];
$content=$_POST[‘content’];
$date=$_POST[‘aa’].’-‘.$_POST[‘mm’].’-‘.$_POST[‘jj’].’ ‘.$_POST[‘hh’].’:’.$_POST[‘mn’].’:’.$_POST[‘ss’];
$category=”;
for($x=1;$x<count($_POST[‘post_category’]);$x++) {
$category.=’,’.get_cat_name($_POST[‘post_category’][$x]);
}
$type=$_POST[‘post_type’];
$tags=str_replace(‘、’,’,’,$_POST[‘tax_input’][‘post_tag’]);
if($_POST[‘newtag’][‘post_tag’]){
$tags.=’,’.str_replace(‘、’,’,’,$_POST[‘newtag’][‘post_tag’]);
}
$data = ‘key=’.$key.’&title=’.$title.’&content=’.$content.’&date=’.$date.’&category=’.$category.’&type=’.$type.’&tags=’.$tags;
$ch = curl_init (); //cURL模拟POST
curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, TRUE );
curl_setopt ( $ch, CURLOPT_POST, TRUE );
curl_setopt ( $ch, CURLOPT_POSTFIELDS, $data );
curl_setopt ( $ch, CURLOPT_URL, $url );
curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, FALSE);
$ret = curl_exec ( $ch );
curl_close ( $ch );
return $ret;
}
}
这样一来,在主站发表一篇文章后,镜像站点也就会发表出来一篇文章了,但也会有一些意外情况,比如不是马上发表出来,而是显示计划中,正常隔几分钟后会发表好,但也会有发表失败,需要在后台文章管理中,选择该发表失败文章,状态修改为已发布,更新即可。

方案五:采用WordPress API

WordPress API是一组RESTful API,允许开发人员通过HTTP请求与WordPress进行交互。这些API可以用于创建、读取、更新和删除WordPress中的内容,包括文章、页面、分类目录、标签等等。API还提供了对用户身份验证和权限管理的支持,使开发人员可以在不暴露管理员凭据的情况下访问WordPress网站。

问题 1,由于主题升级后,functions.php 代码会被置换。用以上方法实现的内容镜像每次在主题升级后都需要修改 functions.php 代码,这会造成麻烦。 所以有如下解决办法,代码如下:

<?php
//文章推送
add_action(‘publish_post’, ‘fanly_sync_post’); //钩子,在文章发布时执行
function fanly_sync_post($post_ID) {
$key=’123456′; //输入你设置的密钥
$url=’http://6.3838521.com/post.php’;//API 地址,就是接受数据的那个站点
$post_info = get_post($post_ID);
if ( $post_info->post_status == ‘publish’ && $_POST[‘original_post_status’] != ‘publish’ ) {
$title=$_POST[‘post_title’];
$content=$_POST[‘content’];
$date=$_POST[‘aa’].’-‘.$_POST[‘mm’].’-‘.$_POST[‘jj’].’ ‘.$_POST[‘hh’].’:’.$_POST[‘mn’].’:’.$_POST[‘ss’];
$category=”;
for($x=1;$x<count($_POST[‘post_category’]);$x++) {
$category.=’,’.get_cat_name($_POST[‘post_category’][$x]);
}
$type=$_POST[‘post_type’];
$tags=str_replace(‘、’,’,’,$_POST[‘tax_input’][‘post_tag’]);
if($_POST[‘newtag’][‘post_tag’]){
$tags.=’,’.str_replace(‘、’,’,’,$_POST[‘newtag’][‘post_tag’]);
}
$data = ‘key=’.$key.’&title=’.$title.’&content=’.$content.’&date=’.$date.’&category=’.$category.’&type=’.$type.’&tags=’.$tags;
$ch = curl_init (); //cURL 模拟 POST
curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, TRUE );
curl_setopt ( $ch, CURLOPT_POST, TRUE );
curl_setopt ( $ch, CURLOPT_POSTFIELDS, $data );
curl_setopt ( $ch, CURLOPT_URL, $url );
curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, FALSE);
$ret = curl_exec ( $ch );
curl_close ( $ch );
return $ret;
}
}
?>
复制上面的代码,最好是用 Notepad ++等工具另存为 php 文件,打包成 zip 文档,在 wordpress 插件安装后台上传,安装并启用。

这样就是一个插件形式存在了,主题升级后不再有影响。

问题 2,有些主题编辑器是支持密码可见付费可见等短代码的,但短代码在编辑模式跟输出模式是不一样的,到了镜像站的内容会是输出模式,有可能会输出异常。

我的解决办法也是采用小插件的办法,对这些代码进行一个自动修改。代码如下:

<?php
//内容文字替换
function wpdaxue_replace_text($text){
$replace = array(
// ‘原始文字’ => ‘替换为这些’
‘\”20\”]’ => ‘”20″]’,
‘\”10\”]’ => ‘”10″]’,
‘\”50\”]’ => ‘”50″]’
);
$text = str_replace(array_keys($replace), $replace, $text);
return $text;
}
add_filter(‘the_content’, ‘wpdaxue_replace_text’); //正文
add_filter(‘the_excerpt’, ‘wpdaxue_replace_text’); //摘要
add_filter(‘comment_text’, ‘wpdaxue_replace_text’); //评论
?>
问题3:图片处理问题,只是参考代码

function post_to_sina_weibo($post_ID) {

/* 此处修改为通过文章自定义栏目来判断是否同步 */
if(get_post_meta($post_ID,’weibo_sync’,true) == 1) return;

$get_post_info = get_post($post_ID);
$get_post_centent = get_post($post_ID)->post_content;
$get_post_title = get_post($post_ID)->post_title;
if ($get_post_info->post_status == ‘publish’ && $_POST[‘original_post_status’] != ‘publish’) {
$appkey=’上个步骤获取的App key’;
$username=’用户名’;
$userpassword=’密码’;
$request = new WP_Http;
$keywords = “”;

/* 获取文章标签关键词 */
$tags = wp_get_post_tags($post_ID);
foreach ($tags as $tag ) {
$keywords = $keywords.’#’.$tag->name.”#”;
}

/* 修改了下风格,并添加文章关键词作为微博话题,提高与其他相关微博的关联率 */
$string1 = ‘【文章发布】’ . strip_tags( $get_post_title ).’:’;
$string2 = $keywords.’ 查看全文:’.get_permalink($post_ID);

/* 微博字数控制,避免超标同步失败 */
$wb_num = (138 – WeiboLength($string1.$string2))*2;
$status = $string1.mb_strimwidth(strip_tags( apply_filters(‘the_content’, $get_post_centent)),0, $wb_num,’…’).$string2;

if ( has_post_thumbnail()) {
$timthumb_src = wp_get_attachment_image_src( get_post_thumbnail_id($post_ID), ‘full’ );
$url = $timthumb_src[0];
} else {
preg_match_all(‘/<img.*?(?: |\\t|\\r|\\n)?src=[\'”]?(.+?)[\'”]?(?:(?: |\\t|\\r|\\n)+.*?)?>/sim’, $get_post_centent, $strResult, PREG_PATTERN_ORDER); //正则获取文章中第一张图片
$n = count($strResult[1]);
if($n > 0){
$url=$strResult[1][0];
}
}
/* 判断是否存在图片,定义不同的接口 */
if(!empty($url)){
$api_url = ‘https://api.weibo.com/2/statuses/upload_url_text.json’; /* 新的API接口地址 */
$body = array(‘status’ => $status,’source’ => $appkey,’url’ => $url);
} else {
$api_url = ‘https://api.weibo.com/2/statuses/update.json’;
$body = array(‘status’ => $status,’source’ => $appkey);
}
$headers = array(‘Authorization’ => ‘Basic ‘ . base64_encode(“$username:$userpassword”));
$result = $request->post($api_url, array(‘body’ => $body,’headers’ => $headers));

/* 若同步成功,则给新增自定义栏目weibo_sync,避免以后更新文章重复同步 */
add_post_meta($post_ID, ‘weibo_sync’, 1, true);
}
}
add_action(‘publish_post’, ‘post_to_sina_weibo’, 0);

/*
//获取微博字符长度函数
*/
function WeiboLength($str)
{
$arr = arr_split_zh($str); //先将字符串分割到数组中
foreach ($arr as $v){
$temp = ord($v); //转换为ASCII码
if ($temp > 0 && $temp < 127) {
$len = $len+0.5;
}else{
$len ++;
}
}
return ceil($len); //加一取整
}
/*
//拆分字符串函数,只支持 gb2312编码
//参考:http://u-czh.iteye.com/blog/1565858
*/
function arr_split_zh($tempaddtext){
$tempaddtext = iconv(“UTF-8”, “GBK//IGNORE”, $tempaddtext);
$cind = 0;
$arr_cont=array();
for($i=0;$i<strlen($tempaddtext);$i++)
{
if(strlen(substr($tempaddtext,$cind,1)) > 0){
if(ord(substr($tempaddtext,$cind,1)) < 0xA1 ){ //如果为英文则取1个字节
array_push($arr_cont,substr($tempaddtext,$cind,1));
$cind++;
}else{
array_push($arr_cont,substr($tempaddtext,$cind,2));
$cind+=2;
}
}
}
foreach ($arr_cont as &$row)
{
$row=iconv(“gb2312″,”UTF-8”,$row);
}
return $arr_cont;
}
A、内容区的图片地址存在post表的post_content字段中
B、特色图片也保存在post表中,post_type 是 attachment,post-mime-type 是 image/png。通过 post_parent 与文章关联。

参考文档:
https://www.cnblogs.com/cocowool/p/7266933.html
https://blog.csdn.net/chubobiao9200/article/details/100874354
问题四:其它参考文档

搜索关键词:
wordpress文章发布API、wordpress多站点文章发布、wordpress多站点 内容发布、 文章同步、 wordpress图片远程上传

https://www.shuimiao.net/WordPress/
www.147seo.com
https://www.xitongzhijia.net/soft/219835.html

二、API接口开发
http://news.sohu.com/a/664576403_121675761 ok
Wordpress发布文章接口插件 https://github.com/shudal/perci-auto-publish
https://www.onekeyadmin.com/log/966.html
https://developer.wordpress.org/rest-api/

WordPress REST API (Version 2)


https://github.com/WP-API/WP-API

https://www.cizhui.cn/10520.html OK
http://www.classnotes.cn/2819.html ok
https://www.itbulu.com/wp-sync-posts.html ok
https://www.cnwper.com/wp-sync-post.html ok
https://www.idc1680.com/217.html ok

三、for
1、https://rudrastyh.com/wordpress-multisite/post-to-all-sites.html

四、图片上传
1、https://zhuanlan.zhihu.com/p/25328150 ok
2、https://blog.csdn.net/cdefg198/article/details/8941172
3、https://www.znian.cn/823.html
4、https://www.ti6.net/internet/2079.html ??
5、http://t.csdn.cn/yIsUJ
6、http://www.likuli.com/archives/565/ ok
问题五、wordpress 6.1版发布文章的情况记录:

1、记录两条记录。

2、同时发现在以下值不同:post_status、comments_status ping_status post_name post_parent post_type

3、内容区同样的代码,有两条记录的内容区的图片才显示正常。

因此做如下分析:

post_status(文章状态):

1)、pending:待审-已完成并提交审核但尚未发布的文章

2)、draft:草稿-已保存但尚未完成且尚未发布的文章

3)、auto-draft:自动保存的草稿

4)、inherit:修订版本-WordPress具有自动保存功能,可自动将草稿保存为修订版

5)、trash:回收站-被添加到回收站的文章

6)、publish:已发布-已发布的文章

7)、future:定时-计划稍后定时发布的文章,也就是通过上图设置发布时间为未来某个时间点即可

8)、private:私有-标记为私密的文章,只有自己登录后可见

post_type(内容类型):

————————————————

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。

原文链接:https://blog.csdn.net/lyb8010/article/details/130357085

 

 

参考网址:

WordPress文章发布后自动同步wordpress,无需插件API_wordpress数据库文章同步_云博客-资源宝的博客-CSDN博客https://blog.csdn.net/u012241616/article/details/110563637

wordpress免登录Api文章发布接口_wordpress发布接口_乐编小易的博客-CSDN博客https://blog.csdn.net/u012951308/article/details/128914596?spm=1001.2101.3001.6650.3&utm_medium=distribute.pc_relevant.none-task-blog-2~default~YuanLiJiHua~Position-3-128914596-blog-110563637.235%5Ev32%5Epc_relevant_default_base3&depth_1-utm_source=distribute.pc_relevant.none-task-blog-2~default~YuanLiJiHua~Position-3-128914596-blog-110563637.235%5Ev32%5Epc_relevant_default_base3&utm_relevant_index=5

集自动发布、本地管理于一身:基于 WordPress 同步的博客管理方案分享 – 少数派https://sspai.com/post/73658?utm_source=twitter
————————————————

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。

原文链接:https://blog.csdn.net/lyb8010/article/details/130357085

来源地址:wordpress 多站点文章同步发布多种同步方式技术探讨

转载声明:本站文章若无特别说明,皆为原创,转载请注明来源:www.88531.cn资享网,谢谢!^^

© 版权声明
THE END
喜欢就支持一下吧
点赞50 分享