码迷,mamicode.com
首页 > 其他好文 > 详细

WordPress主题开发:按分类调用文章

时间:2018-07-06 22:30:41      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:while   ref   ESS   ali   nav   var   color   ati   query   

调用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主题开发:按分类调用文章

标签:while   ref   ESS   ali   nav   var   color   ati   query   

原文地址:https://www.cnblogs.com/tinyphp/p/6390285.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!