找到了一个简单的解决方案。。我张贴完整的索引。php
<?php
/**
* Description: Default Index template to display loop of blog posts
*
* @package WordPress
* @subpackage BootstrapWP
*/
get_header(); ?>
<?php
// Some sample styles for the images
echo "<style type=\'text/css\'>
.half {
width: 50%;
float: left;
}
.ng-row {
clear: both;
}
</style>\\n";
?>
<div class="container">
<div class="row">
<div class="span6">
<div class="span4">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="half">
<?php the_excerpt()?>
</div>
<?php endwhile;endif ?>
<?php get_sidebar(\'blog\'); ?>
<?php get_footer(); ?>
另一个没有发现和修改偶/奇的干净且更精确的解决方案是
<?php if (have_posts()) :
while(have_posts()) :
$i++;
the_post()?>
<div class="row" style="width: 670px;">
<div id="left-column">
<?php the_content(); ?>
</div>
<?php
endwhile;
?>
<style>
left-column {
width: 333px;
float: right;
clear: none;
}
</style>
希望这对您有所帮助