WordPress调用网站最新文章

在需要的地方使用此代码就可以实现调用wordpress最新文章 <?php      query_posts("showposts=10&orderby=new"); //showposts表示10篇 //orderby表示排序方式      while(have_posts()): the_post();      ?>      <li><a href="<?php the_permalink(); ?>" target="_blank"><?ph…