Skip to content

Instantly share code, notes, and snippets.

@woogist
Created December 12, 2014 10:41
Show Gist options
  • Save woogist/0256d768b93c334b9fbd to your computer and use it in GitHub Desktop.
Save woogist/0256d768b93c334b9fbd to your computer and use it in GitHub Desktop.
Change the number of related products in the single product page
/**
* Change the number of related products in the single product page.
*
* @param array $args
* @return array
*/
function wc_custom_related_products_number( $args ) {
if ( isset( $args['posts_per_page'] ) ) {
$args['posts_per_page'] = 8;
}
return $args;
}
add_filter( 'woocommerce_output_related_products_args', 'wc_custom_related_products_number' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment