我有这个脚本
<table width="100%" border="0" cellspacing="0" cellpadding="6">
<tr>
<th>ID product</th>
</tr>
<?php
$query_args = array( 'post_type' => 'product', 'posts_per_page' => 1 );
$loop = new WP_Query( $query_args );
if ( have_posts() ) while ( $loop->have_posts() ) : $loop->the_post(); global $_product;
?>
<tr>
<td><?php echo $_product->get_the_ID(); ?></td>
</tr>
<?php endwhile; ?>
</table>
但是产品没有显示。我打开调试(真)但什么也没得到(没有错误)。
谢谢