help me about my slide bar

时间:2013-09-01 作者:MajidGh

我在我的网站上有一个幻灯片展示5条最新帖子!我需要chane newpost到exp news类别的特定类别?我的幻灯片放映代码是:

    <div class="callbacks_container">
  <ul class="rslides" id="slider3">
    <?php
$the_query = new WP_Query(array(\'order\' =>\'descending\',\'orderby\' =>\'ID\',\'posts_per_page\' =>\'5\'));   
while ($the_query->have_posts()) : $the_query->the_post(); ?>
    <li>
      <?php
if ( has_post_thumbnail() ) {
the_post_thumbnail(\'large\');
}
else {
echo \'<img alt="No Image" src="\' . get_stylesheet_directory_uri() . \'/images/no-image.png" />\';
}
?>
      <p class="caption">
        <?php the_title(); ?>
      </p>
    </li>
    <?php endwhile; ?>
    <?php wp_reset_query(); ?>
  </ul>
</div>
请尽快帮助我!

tnx大量

1 个回复
最合适的回答,由SO网友:Rahil Wazir 整理而成

据我所知,你的问题是,你想从特定类别获得帖子。

    <div class="callbacks_container">
  <ul class="rslides" id="slider3">
    <?php
$the_query = new WP_Query(array(\'order\' =>\'descending\',\'orderby\' =>\'ID\',\'posts_per_page\' =>\'5\', \'category_name\' => \'news\'));
while ($the_query->have_posts()) : $the_query->the_post(); ?>
    <li>
      <?php
if ( has_post_thumbnail() ) {
the_post_thumbnail(\'large\');
}
else {
echo \'<img alt="No Image" src="\' . get_stylesheet_directory_uri() . \'/images/no-image.png" />\';
}
?>
      <p class="caption">
        <?php the_title(); ?>
      </p>
    </li>
    <?php endwhile; ?>
    <?php wp_reset_query(); ?>
  </ul>
</div>
添加category_name 到$the\\u query数组,并给出类别slug的值。

像这样:

\'category_name\' => \'news\'

结束

相关推荐

Sidebar slideshow widget

有人知道可以放在边栏上的高质量图像幻灯片小部件吗?