1. [CATEGORY & TAXONOMY & POST] Nhận bài viết theo phân loại tùy chỉnh (ok)

https://qastack.vn/wordpress/165610/get-posts-under-custom-taxonomy

<?php  
$args = array(
  'type'         => 'post',
  'taxonomy'     => 'genre',
);
$categories = get_categories($args);
foreach ($categories as $cat) {
  // here's my code for getting the posts for custom post type
  $posts_array = get_posts(
    array(
      'showposts' => -1,
      'post_type' => 'book'
    )
  );
  echo '<pre>';
  	var_export($posts_array);
  echo '</pre>';
}
?>

Last updated