2012-04-20 80 views

回答

2
$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 
) 

Reference

1

$ future_posts = get_posts( 'post_status'=> '未來');

相關問題