get_posts atribuídos a um termo específico de taxonomia customizada, e não aos filhos do termo


18

Digamos que tenho os seguintes termos de taxonomia:

Term 1
  Term 1.1
  Term 1.2
Term 2
  Term 2.1

Como posso obter apenas postagens atribuídas ao Termo 1 e não incluir aquelas atribuídas ao Termo 1.1 ou 1.2?

Por exemplo:

$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".
    )
  )
);

também está me fornecendo postagens com os Termos 1.1 e 1.2 atribuídos.

Obrigado.

Respostas:


35

Ao olhar para a classe WP_Tax_Query em /wp-includes/taxonomy.php, descobri que existe uma opção 'include_children', cujo padrão é true. Modifiquei minha chamada get_posts () original com a seguinte e funciona muito bem:

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

Lista de mais parâmetros de consulta: http://codex.wordpress.org/Class_Reference/WP_Query#Taxonomy_Parameters


3
Lendo da página do Codex vinculada a, acho que o valor de 'campo' na matriz tax_query deve ser 'term_id' em vez de 'id': "Os valores possíveis são 'term_id', 'name' e 'slug'. O valor padrão é 'term_id'. " Suponho que 'id' só funcione porque causa um retorno ao padrão.
Jani Uusitalo

6

apenas deparei com isso outro dia:

$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'
            )
        )
    )
);

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


1

Aqui está o código completo, espero que ajude. obrigado

<?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

é usado o operador 'IN' e funciona

'taxonomia' => 'coleções', 'termos' => matriz (28), 'campo' => 'id', 'operador' => 'IN'

Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.