Thanks Alchymyth, appreciate the help.
This is definitely closer to what I need and helping me learn a bit about php, unfortunately it’s not working quite as needed yet.
I put the code above in the index file as it was conditional statement, and when viewing a parent archive it works perfectly displaying the children. As soon as you click on a child archive though, an extra “No Category” list item is added to the output.
I tried adding just this to the single.php
$current_cats = get_the_category();
foreach( $current_cats as $this_cat ) {
wp_list_categories('child_of=' . $this_cat->term_id . '&title_li='); // list child categories
}
However that returns the correct child categories and 2 “No Category” list items.
Through a process of trial and error / elimination, I’ve concluded that 1 of those “No Category” list items is there because of a parent category I was using to denote which items should be outputtedd on the home page – I think I can get rid of that (as a category item) and instead, use a custom taxonomy to arrange that.
Still need to find a way of getting rid of the 2nd “No Category” list item though.
Thanks in advance for any continued support and guidance!