我正在与基金会一起使用Wordpress来构建我的主题。 使用Wordpress创建的内容不断移出父级 容器。标题保留在其容器内,但
不断出现。
这是我的代码:
<div class="row">
<div class="large-7 column">
<?php query_posts('cat=3&posts_per_page=6'); ?>
<?php while (have_posts()) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php the_title('<h4 class="entry-title"><a href="' . get_permalink() . '" title="' .
the_title_attribute('echo=0') . '" rel="bookmark">', '</a></h4>'); ?>
<div class="entry-content">
<p style="display:inline;"><?php the_content(__('Continue reading', 'example')); ?></p>
</div>
<p class="byline">
<span class="author vcard"><?php the_author_posts_link(); ?></span> <span class="sep">|
</span>
<abbr class="published" title="<?php the_time(__('l, F jS, Y, g:i a', 'example')); ?>">
<?php the_time(__('F j, Y', 'example')); ?></abbr>
<?php edit_post_link(__('Edit', 'example'), ' <span class="sep">|</span> <span
class="edit">', '</span> '); ?>
</p>
</div>
<?php endwhile;?>
</div>
<div class="large-5 column">
</div>
</div>
提前致谢