我正在尝试创建一个类似于所附图像的比较表。但它不像图像中那样工作。
因为我已经完成了以下代码,我得到的与图片不一样,例如,左边床上的单词重复了好几次,我只需要在开始时才需要它。只需显示一次。
<?php
$args = array(
\'post_type\'=> \'forsale\',
\'p\' => \'12,16\',
\'orderby\' => \'ID\',
\'post_status\' => \'publish\',
\'order\' => \'DESC\',
\'posts_per_page\' => -1 // this will retrive all the post that is published
);
$result = new WP_Query( $args );
if ( $result-> have_posts() ) : ?>
<table class="container">
<?php while ( $result->have_posts() ) : $result->the_post(); ?>
<thead><tr><th><?php the_title(); ?></th></tr></thead>
<tbody>
<tr><td>Price</td><td><?php echo get_post_meta( get_the_ID(), \'price\' ); ?></td><tr>
<tr><td>Bed</td><td><?php echo get_post_meta( get_the_ID(), \'bed\' ); ?></td><tr>
</tbody>
<?php endwhile; ?>
</table>
<?php endif;
wp_reset_postdata(); ?>