将来公開される投稿があるかどうかを確認する必要があります。WP 関数を使用したいのですが、mysql_query 経由でデータベースに直接アクセスする必要はありません。
誰かがコードのサンプルを持っていますか?
将来公開される投稿があるかどうかを確認する必要があります。WP 関数を使用したいのですが、mysql_query 経由でデータベースに直接アクセスする必要はありません。
誰かがコードのサンプルを持っていますか?
$count_posts = wp_count_posts();
$future_posts = $count_posts->future;
if($future_posts > 0)
{
// future posts available
}
また
if(wp_count_posts()->future > 0)
{
// future posts available
}
wp_count_posts()
戻り値
stdClass Object
(
[Publish] => 60
[Future] => 1 // only one is available
[Draft] => 9
[Pending] => 3
[Private] => 0
[Trash] => 0
[Auto-draft] => 3
[Inherit] => 0
)
$ future_posts = get_posts('post_status' =>'future');