WordPress呼叫指定分類下的文章
阿新 • • 發佈:2019-01-06
直接上程式碼:
$args:是要顯示的分類的引數。<?php $args=array( 'cat' => 1, // 分類ID 'posts_per_page' => 10, // 顯示篇數 ); query_posts($args); if(have_posts()) : while (have_posts()) : the_post(); ?> <div class="post"> <!-- Post Title --> <h3 class="title"><a href="<?php the_permalink();?>" rel="bookmark"><?php the_title();?></a></h3> <!-- Post Data --> <p class="sub"><a href="#">News</a>, <a href="#">Products</a> • 31st Sep, 09 • <a href="#">1 Comment</a></p> <div class="hr dotted clearfix"> </div> <!-- Post Image <img class="thumb" alt="" src="images/610x150.gif" />--> <!-- Post Content --> <?php the_excerpt(); ?> <!-- Read More Button --> </div> <div class="hr clearfix"> </div> <?php endwhile; endif; wp_reset_query(); ?>
query_posts():可以用來控制在循壞(Loop)中顯示哪些文章。
下面的新增迴圈和條件判斷,還有標題,內容的輸出 大家應該知道了。