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

WordPress博客调用文章分类方法

发布:smiling 来源: PHP粉丝网  添加日期:2018-12-21 10:25:14 浏览: 评论:0 

登陆博客后台,点击外观选项卡下的“编辑”选项进入当前主题编辑界面(也可以下载文件到本地进行编辑)。

在需要调用分类文章的地方添加以下调用代码:

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

category=1&numberposts=10:其中的1是指调用分类ID为1的文章,10是指调用该分类下最新的10篇文章

提交更新文件即可。

通常wordpress博客用户都会选择在博客侧栏sidebar或其它位置显示按时间顺序发表的全站最新文章列表,但部分wordpress博主希望只显示某个分类的最新文章列表,而不是显示全站最新文章列表,如果有这方面需要的博主可以通过添加以下代码来实现显示wordpress某分类最新文章列表。

调用wordpress分类最新文章列表:

在想要调用分类最新文章列表的地方添加以下代码:

  1. <?php 
  2. query_posts('showposts=1&cat=3'); 
  3. while(have_posts()):the_post(); 
  4. ?> 
  5. <ul> 
  6. <li><h3><a href="<?php the_permalink()?>"rel="bookmark"><?php the_title();?></a></h3> 
  7. <ul><li><?php the_content();?></li> 
  8. </ul> 
  9. </li> 
  10. </ul> 
  11. <?php endwhile;?> 

其中showposts后面的数码表示显示的文章数量;cat后面的数值表示分类ID。

调用wordpress指定文章:

  1. <?php query_posts('p=1');?> 
  2. <?php while(have_posts()):the_post();?> 
  3. <a href="<?php the_permalink();?>"><?php the_content();?></a> 
  4. <?php endwhile;wp_reset_query();?> 

p表示指定文章ID

Tags: WordPress 文章分类

分享到: