Skip to content

Instantly share code, notes, and snippets.

@jameshwartlopez
Last active July 25, 2020 09:22
Show Gist options
  • Save jameshwartlopez/ec273a54052114c97af3958b4f392b4a to your computer and use it in GitHub Desktop.
Save jameshwartlopez/ec273a54052114c97af3958b4f392b4a to your computer and use it in GitHub Desktop.
<?php
// Get products by category. on this case its "shirts" which is the slug of the category.
$query_args = array(
'category' => array( 'shirts' ),
);
$products = wc_get_products( $query_args );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment