改布景老是找不到这段程式码,顺便在部落格上留个记录 @@ showposts' => 5
这边的5就是显示5篇。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<ul> <?php $cat = get_the_category(); foreach($cat as $key=>$category){ $catid = $category->term_id; } $args = array('orderby' => 'rand','showposts' => 5,'cat' => $catid ); $query_posts = new WP_Query(); $query_posts->query($args); while ($query_posts->have_posts()) : $query_posts->the_post(); ?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endwhile;?> </ul> |
