Skip to content

Instantly share code, notes, and snippets.

@sajibsrs
Last active August 5, 2017 11:40
Show Gist options
  • Save sajibsrs/8625c3b1dc44ef4e557920bd923a5d41 to your computer and use it in GitHub Desktop.
Save sajibsrs/8625c3b1dc44ef4e557920bd923a5d41 to your computer and use it in GitHub Desktop.
Woocommerce 3+ posts related to product - Related posts in product page
// Custom WP query to get posts by current product category slug
$args = array(
'post_type' => 'post',
'tax_query' => array(
array(
'taxonomy' => 'category',
'field' => 'slug',
'terms' => $cats[0],
'posts_per_page' => 4,
),
),
);
$query = new WP_Query( $args );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment