当前位置:首页 > CMS教程 > WordPress > 列表

wordpress调用最新文章函数(可指定分类)

发布:smiling 来源: PHP粉丝网  添加日期:2014-06-20 16:18:39 浏览: 评论:0 
在wordpress中调用最新文章有很多函数像最常用的wp_get_archvies函数就可以调用网站指定前多少条记录了.
 
1.调用网站所有文章只最新10条记录,代码如下:

<?php get_archives(‘postbypost’, 10); ?> 或如下代码:

<?php wp_get_archives(‘type=postbypost&limit=10&format=custom’); ?>

上面是调用最新10条记录,只不过是全站的.

2.调用指定分类最新文件,代码如下:

  1. <?php $posts = get_posts( "category=4&numberposts=10" ); ?> 
  2. <?php if$posts ) : ?> 
  3. <ul><?php foreach$posts as $post ) : setup_postdata( $post ); ?> 
  4. <li> 
  5. <a href="<?php the_p(www.111cn.net)ermalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a> 
  6. </li> 
  7. <?php endforeach; ?> 
  8. </ul> 
  9. <?php endif; ?> 

或者使用wordpress强大的API功能,代码如下:

  1. <ul> 
  2. <?php query_posts('cat=15&posts_per_page=10'); while(have_posts()): the_post(); ?> 
  3.  <li><a href="<?php the_permalink();?>"><?php the_title();?></a></li> 
  4.  <?php endwhile; wp_reset_query(); ?> 
  5. </ul> 

Tags: wordpress最新文章 函数

分享到: