if( !$query ){
$prise = get_post_meta($post_id,'_price',true);
$query = array(
'posts_per_page' => 4,
'paged' => 1,
'post_status' => 'publish',
'post_type' => 'product',
'exclude' => $post_id,
'meta_query' => array(
array(
'key' => '_price',
'value' => $prise,
'compare' => '=',
),
)
);
}
$trlist = $html->find( 'td.S2H', 0 )->parent()->children();
foreach( $trlist as $tr ) {
/*че-то там*/
}