web-dev-qa-db-ja.com

get_postsは特定のカスタム分類学用語に割り当てられ、その用語の子には割り当てられません

次のような分類用語があるとします。

Term 1
  Term 1.1
  Term 1.2
Term 2
  Term 2.1

Term 1に割り当てられた投稿のみを取得し、Term 1.1またはTerm 1.2に割り当てられた投稿は含めないようにするにはどうすればよいですか。

例えば:

$pages = get_posts(array(
  'post_type' => 'page',
  'numberposts' => -1,
  'tax_query' => array(
    array(
      'taxonomy' => 'taxonomy-name',
      'field' => 'id',
      'terms' => 1 // Where term_id of Term 1 is "1".
    )
  )
);

また、1.1条と1.2条が割り当てられている投稿もあります。

ありがとう。

18
robertwbradford

/wp-includes/taxonomy.phpのWP_Tax_Queryクラスを見ると、 'include_children'オプションがあり、デフォルトはtrueです。元のget_posts()呼び出しを次のように変更したところ、うまく機能しました。

$pages = get_posts(array(
  'post_type' => 'page',
  'numberposts' => -1,
  'tax_query' => array(
    array(
      'taxonomy' => 'taxonomy-name',
      'field' => 'id',
      'terms' => 1, // Where term_id of Term 1 is "1".
      'include_children' => false
    )
  )
));

より多くのクエリパラメータのリスト: http://codex.wordpress.org/Class_Reference/WP_Query#Taxonomy_Parameters

35
robertwbradford

先日出会ったばかりです。

$tax = 'music';
$oterm = 'pop';
$term = get_term_by('slug', $oterm, $tax);
$termChildren = get_term_children($term->term_id, $tax);
$wp_query = new WP_Query();
$wp_query->query(
    array(
        'posts_per_page' => '5',
        'tax_query' => array(
            array(
                'taxonomy' => $tax,
                'field' => 'slug',
                'terms' => $oterm
            ),
            array(
                'taxonomy' => $tax,
                'field' => 'id',
                'terms' => $termChildren,
                'operator' => 'NOT IN'
            )
        )
    )
);

ソース: http://return-true.com/2011/08/wordpress-display-posts-from-a-term-without-displaying-posts-from-child-terms/

6
helgatheviking

これが役に立つ完全なコードです。ありがとう

<?php 
$terms_array = array( 
  'taxonomy' => 'services', // you can change it according to your taxonomy
  'parent'   => 0 // If parent => 0 is passed, only top-level terms will be returned
);
$services_terms = get_terms($terms_array); 
foreach($services_terms as $service): ?>
<h4><?php echo $service->name; ?></h4>
<?php 
$post_args = array(
      'posts_per_page' => -1,
      'post_type' => 'service', // you can change it according to your custom post type
      'tax_query' => array(
          array(
              'taxonomy' => 'services', // you can change it according to your taxonomy
              'field' => 'term_id', // this can be 'term_id', 'slug' & 'name'
              'terms' => $service->term_id,
          )
      )
);
$myposts = get_posts($post_args); ?>
<ul>
<?php foreach ( $myposts as $post ) : setup_postdata( $post ); ?>
  <li>
    <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
  </li>
<?php endforeach; // Term Post foreach ?>
</ul>
<?php wp_reset_postdata(); ?>

<?php endforeach; // End Term foreach; ?>  
0
Muddasir

演算子 'IN'を使用して動作します

'分類' => 'コレクション'、 'terms' =>配列(28)、 'field' => 'id'、 'operator' => 'IN'

0
Markus