在表格内显示有问题的帖子

时间:2019-01-17 作者:James Paul

我正在尝试创建一个类似于所附图像的比较表。但它不像图像中那样工作。enter image description here

因为我已经完成了以下代码,我得到的与图片不一样,例如,左边床上的单词重复了好几次,我只需要在开始时才需要它。只需显示一次。

<?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(); ?>

1 个回复
SO网友:Mohsin Ghouri

Bed
在上面的一行中,get\\u post\\u元函数之前缺少echo,这就是为什么它只显示所有条目的Bed。

请使用下面在get\\u post\\u元函数之前具有echo的代码更改上述代码。床

相关推荐

如何在WooCommerce总价金额->ProductPages下增加保证金

我对ProductPage上的woocommerce价格金额有两个问题。第一个问题:我想在总价格金额下增加更多保证金,并按下“添加到卡”按钮我怎样才能做到这一点?(示例见下图)第二我只想显示总价。现在我得到了可变产品的最低价格,显示在产品标题下面,以及总价格金额。我只想显示总价。已经谢谢你了!