Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have three level categories in my Wordpress site. It's looks like:

 Parent A
  - Child A1
     - - Child child A11
     - - Child child A12
  - Child A2
     - - Child child A21
     - - Child child A22
Parent B
  - Child B1
     - - Child child B11
     - - Child child B12
  - Child B2
    - - Child child B11
    - - Child child B12

I have a code:

<?php
        $termID = 3; // Parent A ID
        $taxonomyName = "products";
        $termchildren = get_term_children( $termID, $taxonomyName );
            echo'<div class="sub"> <div class="links">';
              foreach ($termchildren as $child) {
                  $term = get_term_by( 'id', $child, $taxonomyName );
                  echo'<a href="#">' . $term->name . '</a>';}
            echo'</div> </div>';?>

The result of the code is:

  • Child A1
  • Child child A11
  • Child child A12
  • Child A2
  • Child child A21
  • Child child A22

How to get only the Child without Child Child?

share|improve this question

1 Answer

up vote 3 down vote accepted

You can try

$args = array('child_of' => $termID, 'parent' => $termID);
$termchildren = get_terms( $taxonomyName, $args);

instead of

$termchildren = get_term_children( $termID, $taxonomyName );

If the child_of and parent values are same then the result will be only one level.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.