我目前将所有帖子显示在一列中:
1
2
3
...
我想实现类似的目标:
1
23
4
56
...
有没有人知道我该怎么做?是否可以?非常感谢你:)
现在我有:
<?php if( $wp_query->current_post <= 0 ) : ?>
code for the first one column post
<?php else : ?>
the rest of the posts styled in columns
<?php endif; ?>