Wordpress列表与未发布的帖子

时间:2015-01-14 14:24:30

标签: php wordpress wordpress-theming

我有1个ul列表来显示已发布的帖子以及那些有不同风格的帖子。因此,我已经将帖子设置为将来的预定日期,以便在wordpress(状态:将来)

上发布

这就是我正在使用的:

<ul>
// Here come the already published posts - this one works 
    <li class="bereits">Bereits erschienen</li>
    <?php 
    if ( get_post_status ( $ID ) == 'publish' ) {
        $args=array( 'posts_per_page'=>9, 'offset'=> 0, 'category' => '','orderby'=> 'post_date','order'=> 'ASC', ); 
        $seiten = get_posts( $args ); 

        foreach ( $seiten as $post ) : setup_postdata( $post ); ?>

        <li class="aktiv">
            <a href="<?php the_permalink(); ?>">
               <?php the_title(); ?>
            </a>
        </li>

        // And here shall come the future posts - doesn't work
        <?php endforeach; wp_reset_postdata(); 

    } else { ?>

       <li class="nochnicht">Noch nicht erschienen</li> 
       <?php
       $args_inaktiv=array( 'posts_per_page'=>9, 'offset'=> 0, 'category' => '','orderby'=> 'post_date','order'=> 'ASC', ); 
       $seiten_inaktiv = get_posts( $args_inaktiv ); 

       foreach ( $seiten_inaktiv as $post ) : setup_postdata( $post ); ?>

        <li class="inaktiv">
            <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
        </li>
       <?php endforeach; wp_reset_postdata();
    } ?>
</ul>

已经发布的帖子确实很好地展示了,但未来的帖子却没有。我需要在wordpress上编辑设置,还是我的代码错了?

非常感谢

1 个答案:

答案 0 :(得分:3)

get_posts()函数中帖子状态的默认设置是“发布”。如果您只想要将来的帖子,可以将此设置为“future”,如果您想要两者,则可以将其设置为“future,future”:

$args=array('posts_per_page'=>9, 'offset'=> 0, 'category' => '','orderby'=> 'post_date','order'=> 'ASC', 'post_status' => 'publish,future' );

有关详情,请查看thisthis one:)