WordPress主题开发:按分类调用文章
Posted tinyphp
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WordPress主题开发:按分类调用文章相关的知识,希望对你有一定的参考价值。
调用catid为2的分类下的文章,就是后台分类链接的tag_ID
<?php $cat_query = new WP_Query(array( ‘cat‘ => ‘2‘ )); ?> <div id="sitebar"> <ul class="nav nav-pills nav-stacked nav-og"> <?php if ($cat_query->have_posts()) : while ($cat_query->have_posts()) : $cat_query->the_post(); ?> <li><a href=“<?php the_permalink() ?>” target=“_blank” title=“<?php the_title(); ?>”><?php the_title(); ?></a></li> <?php endwhile; ?> <?php endif; ?> </ul> </div>
获取当前分类id
get_query_var(‘cat‘)
以上是关于WordPress主题开发:按分类调用文章的主要内容,如果未能解决你的问题,请参考以下文章