我的客户想要一个可以浏览所有可用Wordpress拍卖的页面(我正在使用Sitemile的Auction插件)。您可以看到相关网页的外观如何here。
我在div中使用了一个表,其中每个表列都引用了一个帖子/拍卖。每列必须为1366px宽,并且应通过单击左右黄色箭头来导航列/柱。可能吗?如果是这样,怎么样?
或者有没有更好的方法来做到这一点,不是只使用表而是使用div?
以下是我如何生成内容:
<div class="box_content">
<table>
<tr>
<?php $i = 0; if ($pageposts): ?>
<?php global $post; ?>
<?php foreach ($pageposts as $post): ?>
<?php setup_postdata($post); ?>
<?php echo "<td style='min-width: 1366px; padding-right: 60px;'>
(... auction content ...)
"?></td>
<?php endforeach; ?>
<?php endif; ?>
</tr>
</table>