Olá amigos estou desenvolvendo um site pra uma imobiliaria porém com tema PRO estou encontrando dificuldades na hora de listar todos post_type shop_order alguém me ajuda por favor
segue o código
$params = array(
'post_type' => array('shop_order'),
);
$wc_query = new WP_Query($params);
?>
<?php if ($wc_query->have_posts()) : ?>
<h1>Seus Pedidos</h1>
<?php while ($wc_query->have_posts()) : $wc_query->the_post(); ?>
<p>
<?php the_title(); ?>
<button type="submit">
<a href="/www.okaimoveis.com.br/register-property/? update=true&id=<?= get_the_ID()?>">
Cadastrar
</a>
</button>
</p>
<?php endwhile; ?>
<?php wp_reset_postdata(); ?>
<?php else: ?>
<p>
<?php _e( 'Nenhum pedido encontrado!' ); ?>
</p>
<?php endif; ?>