Skip to content
This repository has been archived by the owner on Feb 23, 2024. It is now read-only.

Commit

Permalink
Single Product Template - Related Products: fix items per page option (
Browse files Browse the repository at this point in the history
  • Loading branch information
gigitux authored May 4, 2023
1 parent a87080c commit 3f5aed6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/BlockTypes/RelatedProducts.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,10 @@ public function build_query( $query ) {
}

return array(
'post_type' => 'product',
'post__in' => $related_products_ids,
'post_status' => 'publish',
'post_type' => 'product',
'post__in' => $related_products_ids,
'post_status' => 'publish',
'posts_per_page' => $query['posts_per_page'],
);
}

Expand Down

0 comments on commit 3f5aed6

Please sign in to comment.