admin管理员组文章数量:1435859
I imported my Tumblr blog to Wp but all my blog are showing the preceding date as the date of publishing. I even changed the timezone of my wp account to my location before importing but the problem persists.
I imported my Tumblr blog to Wp but all my blog are showing the preceding date as the date of publishing. I even changed the timezone of my wp account to my location before importing but the problem persists.
Share Improve this question asked Mar 20, 2019 at 12:33 Prashant ChoubeyPrashant Choubey 1 1- Does dates match in the Tumblr export file? – Max Yudin Commented Mar 20, 2019 at 14:18
1 Answer
Reset to default 0Option 1 (no code): you can manually edit each post and change the published date. Look in the "Publish" box where you publish or update posts, and there will be a "published on" date with an "edit" link.
Option 2 (requires database access): you can run a MySQL query to adjust all posts' dates.
UPDATE wp_posts SET post_date = DATE_ADD(post_date,INTERVAL 1 DAY) WHERE post_type = 'post';
UPDATE wp_posts SET post_date_gmt = DATE_ADD(post_date_gmt,INTERVAL 1 DAY) WHERE post_type = 'post';
There are two lines because WP stores both a local timezone timestamp and a GMT timestamp.
This assumes your database uses the default wp_
prefix - you should first back up your database, then check which prefix you use, and if it's a different prefix then just update wp_posts
in both lines to whatever yours is called.
本文标签: Tumblr imported blog showing wrong date
版权声明:本文标题:Tumblr imported blog showing wrong date 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745672496a2669654.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论