Support

Account

Home Forums General Issues Taxonomy Issue Reply To: Taxonomy Issue

  • I’m still not exactly sure what you are doing?

    What template you’re using to display this?

    Can you go over again what you’re trying to show on the page?

    If you’re create a catagory named ‘meps_category’ then you can create a template file names `taxonomy-meps_category.php’, have you done this?

    I you do this then you can get the current category and then get only children of that category.

    
    $queried_object = get_queried_object();
    $terms = get_terms(get_terms(
        'meps_category', array(
        'parent' => $queried_object->term_id
    ));