get_posts ถูกกำหนดให้กับคำเฉพาะเรื่อง taxonomy ที่กำหนดเองและไม่ใช่ children ของคำนั้น


18

กล่าวว่าฉันมีข้อกำหนดด้านอนุกรมวิธานต่อไปนี้:

Term 1
  Term 1.1
  Term 1.2
Term 2
  Term 2.1

ฉันจะได้รับเฉพาะโพสต์ที่กำหนดให้กับเทอม 1 และไม่รวมโพสต์ที่กำหนดให้กับเทอม 1.1 หรือเทอม 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 ให้ฉันด้วย

ขอบคุณ

คำตอบ:


35

ในการดูคลาส WP_Tax_Query ใน /wp-includes/taxonomy.php ฉันพบว่ามีตัวเลือก 'include_children' ซึ่งเป็นค่าเริ่มต้นที่เป็นจริง ฉันแก้ไขการเรียก get_posts () เดิมด้วยวิธีต่อไปนี้และใช้งานได้ดี:

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

รายการพารามิเตอร์การสืบค้นเพิ่มเติม: http://codex.wordpress.org/Class_Reference/WP_Query#Taxonomy_Parameters


3
การอ่านจากหน้า Codex เชื่อมโยงกับฉันคิดว่าค่าของ 'ฟิลด์' ในอาร์เรย์ tax_query ควรเป็น 'term_id' มากกว่า 'id': "ค่าที่เป็นไปได้คือ 'term_id', 'name' และ 'slug' ค่าเริ่มต้นคือ 'term_id'." ฉันคาดเดาว่า 'id' ใช้งานได้เพียงเพราะทำให้การย้อนกลับไปเป็นค่าเริ่มต้น
Jani Uusitalo

6

เพิ่งเจอสิ่งนี้เมื่อวันก่อน:

$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/


1

นี่คือรหัสที่สมบูรณ์หวังว่าจะช่วย ขอบคุณ

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

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.