将WordPress类别分为两列

时间:2019-07-09 13:24:16

标签: php wordpress

我正在尝试将WordPress类别分为两列,仅显示三篇文章,然后移至第二列。

1. Post 1            4. Post 4          
2. Post 2            5. Post 5
3. Post 3            6. Post 6
<?php
    $args = array( 
    'category' => 3088, 
    'post_type' =>  'page',
    'posts_per_page' => 10,
    'order' => 'ASC'
); 
    $postslist = get_posts( $args );
    foreach ($postslist as $post) :  setup_postdata($post); 
    ?>
<div class="post-featured-category"> 
<h2><a style="color:black;" href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> 
</div> 
<?php the_excerpt(); ?>  
<?php endforeach; ?>

0 个答案:

没有答案