LeoLopesWeb
5/29/2019 - 12:46 AM

query - loop - avoid current post/product/page - não exibir post/produto/página atual

global $post;

$args = array(
	'post_type'      => array( 'product' ),
	'posts_per_page' => 4,
	'order'          => 'ASC',
	'orderby'        => 'meta_value',
	'post__not_in'   => array( $post->ID ) // Avoid displaying current product
);