Last active
August 5, 2017 11:40
-
-
Save sajibsrs/8625c3b1dc44ef4e557920bd923a5d41 to your computer and use it in GitHub Desktop.
Woocommerce 3+ posts related to product - Related posts in product page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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