我正在设计一个带有wordpress的网站。我的索引页面不断并排发布新闻项目,并且无论我如何尝试修改我的代码,它都不会在两者之间中断。
要了解我的意思,请访问www.acacians.net。
以下是我的模板中控制页面“News Post”部分的代码块:
<table width="760" border="0" align="center" cellpadding="10" cellspacing="0" background="wp-content/themes/DarlingTemplate/images/tablebg.jpg">
<tr>
<td>
<table width="530" border="0" align="left" cellpadding="10" cellspacing="0" bgcolor="#f4f3f0">
<tr><?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<td><table width="530" border="0" cellspacing="0" cellpadding="5">
<tr>
<td width="30" height="30"><img src="wp-content/themes/DarlingTemplate/images/category.jpg" /></td>
<td background="wp-content/themes/DarlingTemplate/images/subjbg.jpg"><strong><?php the_title(); ?></strong><br />
Posted on <?php the_time('F jS, Y') ?>
</td>
</tr>
</table>
<table width="530" border="0" cellspacing="0" cellpadding="5">
<tr>
<td width="5"></td>
<td width="505"><?php the_content(__('(more...)')); ?>
</tr>
</table>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?><p>
<?php endif; ?>
</td>
</td>
</tr>
</table>
我尝试在每一行的末尾插入一个break,然后刷新我的页面。为什么这不起作用?
感谢您提供的任何帮助。
非常感谢!!!!
答案 0 :(得分:0)
这是因为您要将所有帖子打印到同一个标签中。
但更大的问题是您在布局中使用嵌套表。