wordpress 内容备份镜像站点建立方法及注意事项

来源:undefined 2025-01-08 08:09:23 1001

下面由WordPress教程栏目给大家介绍wordpress内容备份镜像站点建立方法及注意事项,希望对需要的朋友有所帮助!

作为虾米级站长一枚,实则是不懂代码的菜鸟,由于自己的站点是小水管主机,而且稳定性也难以保障,在很多访客的建议下,也想建立一个内容镜像站点,以实现当主站的主机维护时,能够有一个备用站点让访客访问。

最先我是想能够有一个共用的数据库可以给两个站点一起使用,但百度查了资料后,发现这对于虚拟主机建站来说好像不适用。

直到找到了以下的代码,可以实现源站发表文章时,自动在镜像站点也发表出来。

第一步,在镜像站根目录创建一个命名为 post.php 的 php 文件,代码内容:

//以下为代码正文…

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

<?php //文章接收

define(&#39;WP_USE_THEMES&#39;, false);

require_once("wp-load.php");

$key=&#39;123456&#39;; //设置启动 API 的密钥

if($_POST@[&#39;key&#39;]==$key){

$categorys=explode(&#39;,&#39;,$_POST@[&#39;category&#39;]);

$category=array();

for($x=1;$x<count($categorys);$x++) {

$category[$x-1]=get_cat_ID($categorys[$x]);

}

$info = array(

&#39;post_title&#39; => $_POST@[title],

post_content =&gt; $_POST@[content],

post_status =&gt; publish,

post_author =&gt; 1, //发布文章的作者 ID,1 为管理员

post_date =&gt; $_POST@[date],

tags_input =&gt; $_POST@[tags],

post_category =&gt; $category,

post_type =&gt; $_POST@[type]

);

wp_insert_post( $info );

}

登录后复制

第二步,在主站主题的 functions.php 文件的最后一个?>前加入已下代码,并设置 key,修改 API 地址。

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

//文章推送

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-&gt;post_status == publish &amp;&amp; $_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 if curl_setopt curl_close return><p>这样一来,在主站发表一篇文章后,镜像站点也就会发表出来一篇文章了,但也会有一些意外情况,比如不是马上发表出来,而是显示计划中,正常隔几分钟后会发表好,但也会有发表失败,需要在后台文章管理中,选择该发表失败文章,状态修改为已发布,更新即可。</p>

<p><strong>一些意外情况的解决:</strong></p>

<p>问题 1,由于主题升级后,functions.php 代码会被置换。用以上方法实现的内容镜像每次在主题升级后都需要修改 functions.php 代码,这会造成麻烦。</p>

<p>所以有如下解决办法,代码如下:</p>

<pre class="brush:php;toolbar:false"><?php /*

Plugin Name: 小插件

Description: 给主题添加点小功能

Author: 云落

*/

//文章推送

add_action(&#39;publish_post&#39;, &#39;fanly_sync_post&#39;); //钩子,在文章发布时执行

function fanly_sync_post($post_ID) {

$key=&#39;123456&#39;; //输入你设置的密钥

$url=&#39;http://3838521.com/post.php&#39;;//API地址,就是接受数据的那个站点,修改为自己站点

$post_info = get_post($post_ID);

if ( $post_info->post_status == publish &amp;&amp; $_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 if curl_setopt curl_close return></count>

登录后复制

复制上面的代码,最好是用 Notepad ++等工具另存为 php 文件,打包成 zip 文档,在 wordpress 插件安装后台上传,安装并启用。

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

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

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

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

<?php /*

Plugin Name: 小插件

Description: 给主题添加点小功能

Author: 云落

*/

//内容文字替换

function wpdaxue_replace_text($text){

$replace = array(

// &#39;原始文字&#39; => 替换为这些

"20"] =&gt; "20"],

"10"] =&gt; "10"],

"50"] =&gt; "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); //评论

?&gt;

登录后复制

以上就是wordpress 内容备份镜像站点建立方法及注意事项的详细内容,更多请关注php中文网其它相关文章!

最新文章