调用最新文章,比如在侧边,在调用时添加一些参数,可使用2种方法。
1、wp_get_archives归档
<?php wp_get_archives('type=postbypost&format=html&show_post_count=1&limit=6');?>
2、WP_Query查询
<?php
$my_query=new WP_Query(
array(
'post_type'=>'post',
'posts_per_page'=>6,
'orderby'=>'date',
'order'=>'DESC'
)
);
if($my_query->have_posts()):while($my_query->have_posts()):$my_query->the_post();
?>
<li><a href="<?php the_permalink();?>"><?php the_title();?></a></li>
<?php endwhile; endif; ?>
调用最新文章。
- 我的微信
- 这是我的微信扫一扫
- 我的微信公众号
- 我的微信公众号扫一扫