Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save skylarkcob/e01a5ab94abe0d36659b to your computer and use it in GitHub Desktop.
Save skylarkcob/e01a5ab94abe0d36659b to your computer and use it in GitHub Desktop.
Lấy sản phẩm theo chuyện mục trên blog WordPress
$args = array(
'post_type' => 'contractors',
'posts_per_page' => -1,
'tax_query' => array(
array(
'taxonomy' => $taxonomy,
'terms' => $taxarray,
'field' => 'id'
)
)
);
$query = new WP_Query($args);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment