


Methods and precautions for establishing a wordpress content backup mirror site
The following column WordPress Tutorial will introduce to you the methods and precautions for establishing a WordPress content backup mirror site. I hope it will be helpful to friends in need!
As a shrimp-level webmaster, I am actually a rookie who doesn’t understand code. Since my site is a small water pipe host, and the stability is difficult to guarantee, in many visitors Under the suggestion, I also want to build a content mirror site so that when the host of the main site is maintained, there will be a backup site for visitors to visit.
At first I wanted to have a shared database that could be used by both sites, but after Baidu checked the information, I found that this seemed not applicable to virtual host website building.
Until you find the following code, you can realize that when the source site publishes an article, it will also be automatically published on the mirror site.
The first step is to create a php file named post.php in the root directory of the mirror site. Code content:
//The following is the code text...
<?php //文章接收 define('WP_USE_THEMES', false); require_once("wp-load.php"); $key='123456'; //设置启动 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 ); }
The second step is to add the downloaded code before the last ?> in the functions.php file of the main website theme, set the key, and modify the API address.
//文章推送 add_action('publish_post', 'fanly_sync_post'); //钩子,在文章发布时执行 function fanly_sync_post($post_ID) { $key='123456'; //输入你设置的密钥 $url='http://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; } }
In this way, after an article is published on the main site, the mirror site will also publish an article, but there will also be some unexpected situations, such as not publishing immediately, but showing the plan , it will normally be published after a few minutes, but there may also be publication failures. You need to select the article that failed to be published in the background article management, change the status to published, and update.
Solution to some unexpected situations:
Problem 1. After the theme is upgraded, the functions.php code will be replaced. Content mirroring implemented using the above method requires modifying the functions.php code every time the theme is upgraded, which will cause trouble.
So there is the following solution, the code is as follows:
Copy the above code, it is best to use Notepad and other tools to save it as a php file, package it into a zip document, and upload it in the WordPress plug-in installation background , install and enable.
This way it exists in the form of a plug-in, and it will no longer have any impact after the theme is upgraded.
Question 2. Some theme editors support short codes such as password visibility, payment visibility, etc., but the short code is different in the editing mode and the output mode. The content on the mirror site will be in the output mode, which is possible. An exception will be output.
My solution is also to use a small plug-in to automatically modify these codes. The code is as follows:
<?php /* Plugin Name: 小插件 Description: 给主题添加点小功能 Author: 云落 */ //内容文字替换 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'); //评论 ?>
In this article, the codes used are all provided by omnipotent bloggers. I just made an effective integration of them to achieve my needs. Thank you for sharing. The hard work of the bloggers!
The above is the detailed content of Methods and precautions for establishing a wordpress content backup mirror site. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP and Flutter are popular technologies for mobile development. Flutter excels in cross-platform capabilities, performance and user interface, and is suitable for applications that require high performance, cross-platform and customized UI. PHP is suitable for server-side applications with lower performance and not cross-platform.

You can easily modify your WordPress page width by editing your style.css file: Edit your style.css file and add .site-content { max-width: [your preferred width]; }. Edit [your preferred width] to set the page width. Save changes and clear cache (optional).

Create a product page in WordPress: 1. Create the product (name, description, pictures); 2. Customize the page template (add title, description, pictures, buttons); 3. Enter product information (stock, size, weight); 4 . Create variations (different colors, sizes); 5. Set visibility (public or hidden); 6. Enable/disable comments; 7. Preview and publish the page.

WordPress posts are stored in the /wp-content/uploads folder. This folder uses subfolders to categorize different types of uploads, including articles organized by year, month, and article ID. Article files are stored in plain text format (.txt), and the filename usually includes its ID and title.

WordPress template files are located in the /wp-content/themes/[theme name]/ directory. They are used to determine the appearance and functionality of the website, including header (header.php), footer (footer.php), main template (index.php), single article (single.php), page (page.php), Archive (archive.php), category (category.php), tag (tag.php), search (search.php) and 404 error page (404.php). By editing and modifying these files, you can customize the appearance of your WordPress website

The most stable WordPress version is the latest version because it contains the latest security patches, performance enhancements, and introduces new features and improvements. In order to update to the latest version, log into your WordPress dashboard, go to the Updates page and click Update Now.

Search for authors in WordPress: 1. Once logged in to your admin panel, navigate to Posts or Pages, enter the author name using the search bar, and select Author in Filters. 2. Other tips: Use wildcards to broaden your search, use operators to combine criteria, or enter author IDs to search for articles.

WordPress is developed using PHP language as its core programming language for handling database interactions, form processing, dynamic content generation, and user requests. PHP was chosen for reasons including cross-platform compatibility, ease of learning, active community, and rich library and frameworks. Apart from PHP, WordPress also uses languages like HTML, CSS, JavaScript, SQL, etc. to enhance its functionality.
