<?php query_posts('showposts=5&orderby=new'); //showposts=10表示10篇 while(have_posts()): the_post(); ?> <li><a href="<?php the_permalink(); ?>"target="_blank"><?php the_title() ?></a><?php the_time('Y-m-d'); ?></li> <?php endwhile; ?>
Wordpress调用最新文章
<?php query_posts('showposts=5&orderby=new'); //showposts=10表示10篇 while(have_posts()): the_post(); ?> <li><a href="<?php the_permalink(); ?>"target="_blank"><?php the_title() ?></a><?php the_time('Y-m-d'); ?></li> <?php endwhile; ?>
Wordpress调用最新文章