开发者

Create Grid Layout on Wordpress

开发者 https://www.devze.com 2023-03-13 12:38 出处:网络
I\'m wondering if anyone could answer this question for me, the solution at the bottom didn\'t work for my s开发者_C百科ituation.

I'm wondering if anyone could answer this question for me, the solution at the bottom didn't work for my s开发者_C百科ituation.

http://wordpress.org/support/topic/create-a-page-with-a-2-or-3-column-content-layout

I'm working on a blank canvas at the minute. Haven't got a design for the page yet as the rest of the page's appearance will depend on whether or not I can get this element working.

Any help would be MASSIVELY appreciated. Can't get my head around how to do this.


just put your posts into divs for now


<?php if (have_posts()) ?>
<?php while (have_posts()): the_post(); ?>
<div class="wppost">
<h2>
<?php the_excerpt(); ?>
<p>">Read more...

</div> <?php endwhile; ?> <?php endif; ?>

and then style .wppost (or whatever you name it) like so .wppost{width:32%; float:left}

that's not perfect, but it'll get you started. check out jQuery Masonry for an easy, slick fx for that.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号