我需要一些帮助才能在 wordpress 上显示已发布和计划的帖子。我设法用这段代码在我的 sidebarleft.php 中做到了:
$recentPosts = new WP_Query();
$recentPosts->query('post_status=any&showposts=3');
但我还需要在 index.php 和 categories.php 中显示它们(在帖子计数中)。现在我的帖子显示如下:index.php
<?php if (have_posts()) : ?>
<?php theme_pagination(); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="listeItem">
<h3><?php the_title() ?></h3>
<span class="date"><?php echo the_time('j F Y') ?></span><br />
<span class="lieu"><?php $lieux = get_post_custom_values('lieux'); echo $lieux[0]; ?></span><br />
<a href="<?php the_permalink() ?>">Lire la suite ...</a>
</div>
<?php endwhile; ?>
<?php theme_pagination(); ?>
<?php endif; ?>
和 categories.php :
<ul>
<?php wp_list_categories( array('hide_empty'=>'0', 'title_li'=>'', 'show_count'=>'1') ); ?>
</ul>
有谁知道一个干净的方法来做到这一点?