我正在尝试检查在指定日期之后是否发布了Wordpress帖子。例如,如果帖子是在(2014-04-24)之后发布的,那么它将具有特色图像,如果它是海报之前它没有特色图像。如果有人能提供帮助那就太棒了。
global $post;
$compare_date = strtotime( "2014-04-24" );
$post_date = strtotime( $post->post_date );
print_r($post_date);
if ($compare_date > $post_date ){
//show featured image
the_post_thumbnail('home-thumbnail');
} else {
// Dont show featured image
}