WordPress Bulk Modify Post Publishing Time

批量修改文章的发布时间在WordPress管理中是一个重要且实用的功能。为什么要修改时间呢? 批量修改文章发布时间,可以Optimize the order of article content display, making the posting of a board post earlier or later.

图片[1]-WordPress批量修改文章发布的时间-光子波动网-免费分享跨境知识和技术知识

First, let's go over a few time formats and field descriptions for when WordPress posts are saved in the database:

The post_date format of 0000-00-00 00:00:00 records the posting time of the article.

The post_date_gmt format is the same as above and records the standard time (GMT) when the article was published

post_modified is the post modification time

post_modified_gmt Post modification time (GMT)

Here we enter the actual operation, here we need to enter the WordPress database, generally we are practical phpadmin login, manage the database. First of all, first from the pagoda panel to phpmyadmin:

1, phpmyadmin login

图片[3]-WordPress批量修改文章发布的时间-光子波动网-免费分享跨境知识和技术知识

2, select the name of the database you want to operate, that is, your WordPress station corresponding to the name of the database(The database name 123.com in this article is an example)

图片[4]-WordPress批量修改文章发布的时间-光子波动网-免费分享跨境知识和技术知识

3, select the SQL function in the current database

图片[5]-WordPress批量修改文章发布的时间-光子波动网-免费分享跨境知识和技术知识

4, enter the sql statement and run the

图片[6]-WordPress批量修改文章发布的时间-光子波动网-免费分享跨境知识和技术知识

Explanation of the sql statement in the above figure

UPDATE `wp_posts` SET `post_date` =DATE_ADD(`post_date`, INTERVAL 10 DAY) where post_type = 'post'

INTERVAL 10 DAY, that is, all the articles posting time increased by 10 days, such as 3 DAY (3 days), 5 HOUR (5 hours) 60 MIN (60 minutes), etc., you can modify according to the specific circumstances.

Above is to increase the time, of course, you can also reduce the time, such as posting time for April 10, I want to batch change to April 9 how to do, then modify the code above INTERVAL 10 DAY, changed to INTERVAL -1 DAY, that is, the negative 1 day, you can.

This is the basic method of WordPress batch modifying post time, mainly to learn how to run sql code in phpmyadmin.

© copyright statement
THE END
If you like it, support it.
kudos0 share (joys, benefits, privileges etc) with others
commentaries sofa-buying

Please log in to post a comment

    No comments