Skip to content

Instantly share code, notes, and snippets.

@thierrypigot
Last active March 29, 2016 13:47
Show Gist options
  • Save thierrypigot/e66bc375574d02c20f03 to your computer and use it in GitHub Desktop.
Save thierrypigot/e66bc375574d02c20f03 to your computer and use it in GitHub Desktop.
<?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