我需要拉出帖子的发布日期,以使帖子自动过期。问题是我无法获得正确的发布日期。
这是我的代码:
global $wpdb;
$post_ids = $wpdb->get_results( "SELECT ID FROM $wpdb->posts WHERE post_status ='publish'" );
foreach($post_ids as $id){
$postdate = get_the_date("Y-m-d",$id ); //here is what I can figure out
.......
......etc
}
当我回显$ postdate时,它给出了错误的日期。不是wp_posts表中存在的日期。
如何正确获取日期?