我想在我的主页上的第一页上只显示特色列表,无论它们有多旧
这是我的主页代码:
<?php get_header(); ?>
<?php
if(get_option(\'aven_home\') == "listing") { ?>
<?php include (TEMPLATEPATH . \'/lib/listhome.php\'); ?>
<?php } else { ?>
<div id="content">
<?php
$temp = $wp_query;
$wp_query= null;
$wp_query = new WP_Query();
$wp_query->query(\'paged=\'.$paged);
?>
<?php while ($wp_query->have_posts()) : $wp_query->the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<div class="title">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
</div>
<div class="postmeta">
<span class="author">Posted by <?php the_author(); ?> </span> <span class="clock"> <?php the_time(\'M - j - Y\'); ?></span> <span class="comm"><?php comments_popup_link(\'0 Comment\', \'1 Comment\', \'% Comments\'); ?></span>
</div>
<div class="entry">
<?php
if ( has_post_thumbnail() ) { ?>
<a href="<?php the_permalink() ?>"><img class="postimg" src="<?php bloginfo(\'stylesheet_directory\'); ?>/timthumb.php?src=<?php get_image_url(); ?>&h=150&w=200&zc=1" alt=""/></a>
<?php } else { ?>
<a href="<?php the_permalink() ?>"><img class="postimg" src="<?php bloginfo(\'template_directory\'); ?>/images/dummy.png" alt="" /></a>
<?php } ?>
<?php wpe_excerpt(\'wpe_excerptlength_index\', \'\'); ?>
<div class="clear"></div>
</div>
</div>
<?php endwhile; ?>
<div class="clear"></div>
<?php getpagenavi(); ?>
<?php $wp_query = null; $wp_query = $temp;?>
</div>
<?php } ?>
<?php get_sidebar(); ?>
<?php get_footer(); ?>