Wordpress类别,子类别,循环

时间:2014-07-09 13:35:16

标签: wordpress

我正在使用this tutorial on Wordpress.org。接下来,我明白我需要将其更改为显示5个标题而不是一个帖子,但我的理解有点受限。我还需要帮助显示“特色”帖子下面的帖子及其类别和子类别。

谢谢!

到目前为止,FEATURED部分的代码。我希望特色部分左侧的图像只是最新帖子中的第一张图片,无论其类别如何。我将使用CSS添加标题以及不在其上的内容。

    <!-- Featured SECTION -->
<div class="row">
  <div class="large-7 columns">
    <?php 
      $thumbnails = get_posts('numberposts=1');
      foreach ($thumbnails as $thumbnail) {
        if ( has_post_thumbnail($thumbnail->ID)) {
          echo '<a href="' . get_permalink( $thumbnail->ID ) . '" title="' . esc_attr( $thumbnail->post_title ) . '">';
          echo get_the_post_thumbnail($thumbnail->ID, 'front-large');
          echo '</a>';
        }
      }
    ?>
  </div>
  <div class="large-5 columns latest">
   <h5 class="subheader">Featured</h5>
     <ul>
     <?php
     foreach( ( get_the_category() ) as $category ) {
     $the_query = new WP_Query('featured' . $category->category_nicename . '&showposts=5');
     while ($the_query->have_posts()) : $the_query->the_post();
     ?>
                <li>
                    <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>
                </li>
     <?php endwhile; ?>
     <?php
     }
     ?>
     </ul>
  </div>
</div><!-- END Featured SECTION -->

Mockup

1 个答案:

答案 0 :(得分:0)

您可以使用此插件 - &gt; https://wordpress.org/plugins/featured-post/

当你var_dump($ post)时,你会看到你已经完成的帖子的完整信息