permalinks of subcategory and posts
use the following code should get you through your problem. just pass the id of parent category in $term_id variable <?php $term_id = ; // id for the parent category $taxonomy_name=”category”; $termchildren = get_term_children( $term_id, $taxonomy_name ); foreach ( $termchildren as $child ) : $term = get_term_by( ‘id’, $child, $taxonomy_name ); ?> <h3><a href=”https://wordpress.stackexchange.com/questions/191436/<?php echo … Read more