加入测心网,获得更多

如果您有心理学背景,欢迎加入测心网,服务网友,获得打赏。如有意愿,请联系微信/QQ:57762787

worddpress调用某分类目录下指定数量文章代码

<style type="text/css">
@media screen and (min-width: 800px) {
  .lianglan , .lianglanwenxin {
   width: 49%;
    height: auto;
    margin-bottom: 12px;
    float: left;
    display: inline;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }
}
</style>
<div class="lianglan">
    <header class="page-header"><h3 class="archive-title">测心网心理测试</h3></header>
    <?php
    $args=array(
        'cat' => 1,  
        'posts_per_page' => 10,
    );
    query_posts($args);
    if(have_posts()) : while (have_posts()) : the_post();
    ?>
    <li><a title="<?php the_title();?>"href="<?php the_permalink();?>"><?php the_title();?></a></li>
    <?php  endwhile; endif; wp_reset_query(); ?>   
</div>

上述代码已经包含css
‘cat’ => 1, 1为分类目录
‘posts_per_page’ => 10, 10为文章数量

评论

9+5=

觉得文章有用就打赏一下吧

微信扫一扫打赏