wordpress首页如何调用最新文章
在wordpress网站,我们可以使用下面的代码在网站首页调用最新文章。
<?php wp_get_archives('type=postbypost&limit=5'); ?>
效果如下:
但这种代码是不能自己定义标签的样式的。如果网站的文章列表设计是采用div而不是li标签,调用这个就会错位。通过自定义的调用方式就可以解决这个问题。代码如下:
<?php $rand_posts = get_posts('numberposts=10&orderby=date');foreach($rand_posts as $post) : ?>
<br /><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<?php endforeach;?>
<br /><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<?php endforeach;?>