26 | | Not sure what the best way is to find out that info. I haven't worked with MySQL in a while! |
| 26 | I haven't played with MySQL in a while but I think this is what you want: |
| 27 | {{{#!php |
| 28 | select post_date, post_date_gmt from wp_posts where ID = 2858; |
| 29 | +---------------------+---------------------+ |
| 30 | | post_date | post_date_gmt | |
| 31 | +---------------------+---------------------+ |
| 32 | | 2018-07-22 21:13:23 | 2018-07-23 03:13:23 | |
| 33 | +---------------------+---------------------+ |
| 34 | 1 row in set (0.00 sec) |
| 35 | }}} |