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

调用wordpress指定分类文章2种方法

发布:smiling 来源: PHP粉丝网  添加日期:2014-04-24 09:46:16 浏览: 评论:0 

调用wordpress指定分类文章第一种方法:

  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_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a> 
  6. </li> 
  7. <?php endforeach; ?> 
  8. </ul> 
  9. <?php endif; ?> 

调用wordpress指定分类文章第二种方法:

  1. <h2><?php wp_list_categories('include=11&title_li=&style=none'); ?></h2>  //输出 ID 为11的分类的标题 
  2.  
  3. <?php echo category_description(11); ?>  //输出 ID 为11的分类的描述 
  4.  
  5. <?php query_posts('showposts=5&cat=11'); ?>  //query_posts 给 The Loop 限定的条件是:显示5篇日志和分类 ID 为11 
  6.  
  7. <?php while (have_posts()) : the_post(); ?>  //The Loop 开始 
  8.  
  9. <li><a href="<?php the_permalink() ?>" rel="bookmark" class="title"><?php the_title(); ?></a></li>  //用列表的方式输出带有链接的文章标题 
  10.  
  11. <?php endwhile; ?>  //The Loop 结束 

Tags: wordpress 指定分类 文章

分享到: