Last active
          March 29, 2016 13:47 
        
      - 
      
 - 
        
Save thierrypigot/e66bc375574d02c20f03 to your computer and use it in GitHub Desktop.  
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?php | |
| //Get current category ID | |
| $categories = get_the_category(); | |
| $category_id = $categories[0]->cat_ID; | |
| // OU | |
| // Get children ID of current category | |
| $args = array( | |
| 'parent' => get_queried_object_id(), | |
| ); | |
| $terms = get_terms( 'category', $args ); | |
| $term_ids = wp_list_pluck( $terms, 'term_id' ); | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment