我要去get category id in single.php。我试过这个:
get category id
single.php
$cat_ID = get_query_var('cat');
它没有起作用。我应该用什么代替?
发布于 2012-12-22 11:40:39
您可以简单地使用
$categories = get_the_category();
才能得到指定的类别。
https://wordpress.stackexchange.com/questions/76965
相似问题