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

wordpress中取得当前分类或父分类id程序代码

发布:smiling 来源: PHP粉丝网  添加日期:2015-01-21 21:46:08 浏览: 评论:0 

本文章分享了两段代码,用来获取当前分类或父分类id程序,在wordpress中获取wordpress自身就定义了一个函数,直接可以得出当前文章的分类ID的函数the_category_ID.

具体获取当前分类,代码如下:

<?php the_category_ID(false) ?>

我们可以在得到这个分类ID的基础上,自定义一个函数,求根分类的ID,代码如下:

  1. function get_category_root_id($cat
  2.  
  3. $this_category = get_category($cat); // 取得当前分类 
  4. while($this_category->category_parent) // 若当前分类有上级分类时,循环 
  5. $this_category = get_category($this_category->category_parent); // 将当前分类设为上级分类(往上爬) 
  6. }//开源软件:phpfensi.com 
  7. return $this_category->term_id; // 返回根分类的id号 

最后,当前文章的根分类就可以用函数get_category_root_id(the_category_ID(false))来表示.

另外再分享一个分类相关的热门文章 利用Popularity Contest插件来实例,这个插件有2个function可用 akpc_most_popular_in_cat和akpc_most_popular,分别是指定一个分类id或取当前分类和所有的排名.

但是akpc_most_popular_in_cat有一点问题,就是原来的sql语句是在show_top_ranked_in_cat里面的sql是如下代码:

WHERE tt.term_id = ‘”.intval($cat_ID).”‘

这样,只能在一个分类里面查找,需要修改成支持多个分类id的,改成如下代码如下:

WHERE tt.term_id in (”.$cat_ID.”)

Tags: wordpress当前分类 wordpress父分类

分享到: