1

我正在尝试为 Wordpress 主题编辑此主题的模板:http: //demo.fabthemes.com/financio/ 在“来自博客”容器中,我不想显示所有最新条目。由于我在我的学习道路上,我不需要一个确切的解决方案。我只需要有人指出我正确的方向。

问题:如何更改我的代码,以便滑块显示来自特定评分标准的条目?我觉得我需要改变一些东西

"$the_query->have_posts() ) : $the_query->the_post();"

<div id="timer1" class="timer"></div>
 <div id="carslide">
  <?php $the_query = new WP_Query('posts_per_page=9' );
   while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
 <div class="post slidepost" id="post-<?php the_ID(); ?>">
   <?php
      $thumb = get_post_thumbnail_id();
      $img_url = wp_get_attachment_url( $thumb,'full' ); //get full URL to image (use "large" or "medium" if the images too big)
      $image = aq_resize( $img_url, 300, 150, true ); //resize & crop the image
   ?>
<?php if($image) : ?>
  <a href="<?php the_permalink(); ?>">
   <img class="slide-image" src="<?php echo $image ?>"/>
  </a>
<?php endif; ?>
    <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
  <?php wpe_excerpt('wpe_excerptlength_index', 'wpe_excerptmore'); ?>
  <div class="clear">
</div>

4

1 回答 1

1

我认为您想更改该WP_Query('posts_per_page=9')部分,以便它显示与不同查询匹配的帖子。您可以阅读查询参考以获取更多信息。

例如,如果您想显示特定类别的五个最新帖子,您可以使用WP_Query('posts_per_page=5&cat=3').

于 2012-09-06T03:05:40.177 回答