查询调用文章所属的分类id,根据文章id查cat分类栏目id方法
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 <?php query_post…
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
query_posts( array( ‘post__not_in’ => $sticky,‘cat’=>‘6’,‘showposts’=>‘6’, ‘caller_get_posts’ => 1 ) );
//print_r(query_posts());exit;
while(have_posts()) : the_post();
$title = get_the_title();
?>
<li>
<span class=“cat color-1”>
<?php $cats=get_the_category();
foreach($cats as $cat) echo $cat->cat_ID;
?>
这是分类id号</span>
</li>
<?php endwhile; ?>
——————————–
|
类别:WordPress开发、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
评论功能已经关闭!