我正在尝试使用Bootstrap 2.3.2创建一个网格组合页面,该页面会自动提取我的帖子。
我希望网格宽3张图像。出于某种原因,它似乎有效但图像和帖子内容一旦通过第一行就不能正确对齐。
下面是图片(红色方框代表我的帖子特色图片),后面是代码。
<?php
/*
Template Name: Design Porftolio
*/
?>
<?php
remove_action('genesis_loop', 'genesis_do_loop');
add_action('genesis_loop', 'custom_loop');
function custom_loop() {
$args = array ('designtype'=>'websitedesigns');
query_posts ($args);
?>
<div class="well">
<h2>Portfolio: Web Design & Development</h2>
</div>
<div class="row-fluid">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="span4">
<?php if ( has_post_thumbnail() ) : ?>
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" ><?php the_post_thumbnail(array(336,190)); ?></a>
<?php endif; ?>
<p><a href="<?php echo get_permalink(); ?>" title="<?php the_title(); ?>" rel="bookmark"><?php the_title(); ?></a></p>
![enter image description here][1]
</div>
<?php endwhile; ?>
<?php endif; ?>
</div>