热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

开发笔记:Wordpress根据页面分类显示文章。

篇首语:本文由编程笔记#小编为大家整理,主要介绍了Wordpress根据页面分类显示文章。相关的知识,希望对你有一定的参考价值。Hadmanypeopleask

篇首语:本文由编程笔记#小编为大家整理,主要介绍了Wordpress根据页面分类显示文章。相关的知识,希望对你有一定的参考价值。



Had many people ask me how I display all posts in a category when they click on the category link in the header @http://www.vagrantradio.com.



There's a lot more involved, but here's the quick and dirty;

  1. //if is articles page, get posts from this category id and show 9 of them.
  2. php
  3. if (is_page('7') ) {//articles
  4. query_posts('cat=4&showposts=9');
  5. } elseif ( is_page('9') ) {//freebies
  6. query_posts('cat=5&showposts=9');
  7. } elseif ( is_page('356') ) {//inspiration
  8. query_posts('cat=30&showposts=9');
  9. } elseif ( is_page('949') ) {//tutorials
  10. query_posts('cat=6&showposts=9');
  11. } else {
  12. $cat = '';
  13. }
  14. ?>

推荐阅读
author-avatar
mb97ujp
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有