WordPress无需插件实现同步文章到其他WordPress站点

niu (UID:125) 2025-8-16 153

思路
在另一个 WordPress 站点创建一个 API,文章发布时用 cURL 模拟 POST 请求 API 利用 wp_insert_post () 函数来创建文章。支持同步文章标题、内容、类型、分类、标签,分类需要另一个站点也有创建相同名称的分类,别名和 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;
   }
}

这样一来,在主站发表一篇文章后,镜像站点也就会发表出来一篇文章了,但也会有一些意外情况,比如不是马上发表出来,而是显示计划中,正常隔几分钟后会发表好,但也会有发表失败,需要在后台文章管理中,选择该发表失败文章,状态修改为已发布,更新即可。

本文转载自:https://help.laoxuehost.com/scripts/wp/wordpress-does-not-require-plug-ins-to-synchronize-articles-to-other-wordpress-sites.html

打赏
参与人数1 金币+10 时间 留言
见山 +10 08-16
赠人玫瑰,手留余香!
免责声明:

此内容由本站网友原创或转载自网络公开渠道,仅供学习测试使用,禁止商用,著作权归原作者所有;
本站不对此内容担负法律责任,请于下载后24小时内删除;
如发现内容侵权或违规,请联系本站,我们将在12小时内及时做删除或屏蔽处理!邮箱:[email protected]


最新回复 (5)

您可以在 登录 or 注册 后,对此帖发表评论!

返回
发新帖
自助推广 自助积分购买 我的推广
展示位加载中...
赞助商家我要入驻