0
我需要分開比2017-07-01更早的帖子。WordPress的發佈時間競爭
在循環中我使用這兩個代碼來顯示blogposts。
$compare_date = strtotime("2017-07-01");
$post_date = get_the_date();
,並試圖他們像
if($compare_date >= $post_date){
//old
}else{
//new
}
比較,但abviously它沒有工作,因爲他們中的一個返回1498867200
等一個1 Haziran 2017
我也試圖把strtotime(get_the_date())
但結果是空的。
我該如何做到這一點?