Lectures

Commissioners

    ”,
    ‘order’ => DESC,
    ‘orderby’ => ‘count’,
    ‘child_of’ => 565,
    ‘number’ => 17,
    ‘exclude’ => 644
    ) );
    foreach( $categories as $category ) {
    $cat = get_category( $category );
    $cat_trimmed = preg_replace(“/\([^)]+\)/”,””,$cat->name);
    //get the name of the category
    $cat_id = get_cat_ID( $cat->name );
    //make a list item containing a link to the category
    $exh_output .= ‘
  • ‘.$cat_trimmed.’
  • ‘;
    }
    echo $exh_output;
    ?>