To makes Pages and Posts current


/ Published in: Other
Save to your folder(s)



Copy this code and paste it in your HTML
  1. UPDATE wp_posts
  2. SET post_date = DATE_ADD( post_date, INTERVAL 9 MONTH ),
  3. post_date_gmt = DATE_ADD( post_date_gmt, INTERVAL 9 MONTH ),
  4. post_modified = DATE_ADD( post_modified, INTERVAL 9 MONTH ),
  5. post_modified_gmt = DATE_ADD( post_modified_gmt, INTERVAL 9 MONTH )

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.