Advertisement
Guest User

soosdani29

a guest
Dec 16th, 2019
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 1.00 KB | None | 0 0
  1. INSERT INTO `wp_posts` (
  2.  
  3. `ID`,
  4. `post_author`,
  5. `post_date`,
  6. `post_date_gmt`,
  7. `post_content`,
  8. `post_title`,
  9. `post_excerpt`,
  10. `post_status`,
  11. `comment_status`,
  12. `ping_status`,
  13. `post_password`,
  14. `post_name`,
  15. `to_ping`,
  16. `pinged`,
  17. `post_modified`,
  18. `post_modified_gmt`,
  19. `post_content_filtered`,
  20. `post_parent`,
  21. `guid`,
  22. `menu_order`,
  23. `post_type`,
  24. `post_mime_type`,
  25. `comment_count`
  26.  
  27. ) VALUES (
  28.  
  29. NULL, -- `ID`
  30. '1', -- `post_author`
  31. '2019-12-16 08:30:00', -- `post_date`
  32. '2019-12-16 07:30:00', -- `post_date_gmt`
  33. 'Test.', -- `post_content`
  34. 'Test', -- `post_title`
  35. '', -- `post_excerpt`
  36. 'future', -- `post_status`
  37. 'open', -- `comment_status`
  38. 'open', -- `ping_status`
  39. '', -- `post_password`
  40. '', -- `post_name`
  41. '', -- `to_ping`
  42. '', -- `pinged`
  43. '2019-12-16 08:06:00', -- `post_modified`
  44. '2019-12-16 07:06:00', -- `post_modified_gmt`
  45. '', -- `post_content_filtered`
  46. '0', -- `post_parent`
  47. '', -- `guid`
  48. '0', -- `menu_order`
  49. 'post', -- `post_type`
  50. '', -- `post_mime_type`
  51. '0' -- `comment_count`
  52.  
  53. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement