【发布时间】:2011-12-20 23:04:42
【问题描述】:
我有一个宽度设置为 200px 的 div.. 我希望 wordpress 循环在那里运行.. 代码:
<div id="main1" width="200px">
<?php query_posts('showposts=5'); ?>
<?php while (have_posts()) : the_post(); ?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a><?php the_content(); ?> <?php comments_number('No Comments','1 Comment','% Comments'); ?><br /><br>
<?php endwhile;?>
</div>
当我输出代码时,div 会移动以适应屏幕。关于如何调整大小的任何建议?我也尝试过css。我正在开发一个自定义 wp 主题。
【问题讨论】:
-
你试过什么CSS?
标签: php html css wordpress loops