‘link_category’, ‘child_of’ => 264)); //get links category object

$html = ‘

    ‘;
    /*Looping*/
    foreach ($tautan as $isi) {
    $nama = $isi->name;
    $slug = $isi->slug;
    $id = $isi->term_taxonomy_id;
    $html .= “\t

  • $nama
  • “;
    };

    /*Output*/
    echo $html;
    ?>